Skip to content

Commit

Permalink
supervisor: Add option to launch encore services with supervisor
Browse files Browse the repository at this point in the history
  • Loading branch information
ekerfelt committed Sep 16, 2024
1 parent b642bc9 commit 8d6740f
Show file tree
Hide file tree
Showing 24 changed files with 755 additions and 150 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@

# MacOS
.DS_Store

runtimes/supervisor-encore
160 changes: 132 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions Cross.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[build]
pre-build = [
"apt-get install unzip &&",
"curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v24.4/protoc-24.4-linux-x86_64.zip &&",
"unzip protoc-24.4-linux-x86_64.zip -d /usr/local &&",
"rm protoc-24.4-linux-x86_64.zip &&",
"export PATH=$PATH:/usr/local/bin",
]

[build.env]
volumes = ["ENCORE_WORKDIR"]
passthrough = ["TYPE_DEF_TMP_PATH", "ENCORE_VERSION"]
Loading

0 comments on commit 8d6740f

Please sign in to comment.