-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(docker): auto-build sdk & hub in build.rs
- Loading branch information
1 parent
7fd4211
commit ee5a532
Showing
16 changed files
with
137 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,27 @@ | ||
* | ||
# MARK: Docker-specific | ||
.git/ | ||
|
||
!Cargo.lock | ||
!Cargo.toml | ||
!sdks/api/full/rust/Cargo.toml | ||
!sdks/api/full/rust/src | ||
!packages | ||
!resources/legacy/proto | ||
# MARK: Copied from .gitignore === | ||
**/.DS_Store | ||
|
||
!docker/monolith | ||
docker/monolith/*.md | ||
# Rust | ||
**/target | ||
|
||
# JavaScript | ||
**/.cache/ | ||
**/.turbo | ||
**/.yarn | ||
**/dist/ | ||
**/node_modules/ | ||
**/target | ||
.turbo | ||
|
||
# Site | ||
site/public/rss/ | ||
!site/public/rss/.gitkeep | ||
|
||
site/src/generated/ | ||
!site/src/generated/errorPages.json | ||
!site/src/generated/apiPages.json | ||
!site/src/generated/meta.json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,27 @@ | ||
# Keep all .gitignore files in this file so we can easily keep it in sync with .dockerignore | ||
# | ||
# Make sure to update .dockerignore appropriately | ||
|
||
**/.DS_Store | ||
**/symbolCache.db | ||
|
||
# Terraform | ||
**/*.tfstate | ||
**/*.tfstate.* | ||
**/.terraform.* | ||
**/.terraform/ | ||
infra/tf/*/_bolt.tf | ||
|
||
# Vagrant | ||
.vagrant-remote | ||
.vagrant-digitalocean-token | ||
**/.vagrant/ | ||
|
||
# Bolt | ||
.bolt-cache.json | ||
.volumes/ | ||
Bolt.local.toml | ||
|
||
/namespaces/* | ||
!/namespaces/.gitkeep | ||
!/namespaces/README.md | ||
|
||
/secrets/* | ||
!/secrets/.gitkeep | ||
!/secrets/README.md | ||
|
||
# Generated code | ||
gen/build_script.sh | ||
gen/test_build_script.sh | ||
gen/svc/ | ||
gen/tf/ | ||
gen/docker/ | ||
gen/tests/ | ||
gen/k8s/ | ||
|
||
# K3s | ||
volumes/ | ||
|
||
# Rust | ||
lib/**/Cargo.lock | ||
!lib/bolt/Cargo.lock | ||
!lib/job-runner/Cargo.lock | ||
# Allows symlinking target instead of being a directory | ||
**/target | ||
**/target/ | ||
**/*.rustfmt | ||
|
||
# JavaScript | ||
**/.cache/ | ||
**/.turbo | ||
**/.yarn | ||
**/dist/ | ||
**/node_modules/ | ||
**/target | ||
.turbo | ||
|
||
tests/basic-game/.env | ||
# Site | ||
site/public/rss/ | ||
!site/public/rss/.gitkeep | ||
|
||
site/src/generated/ | ||
!site/src/generated/errorPages.json | ||
!site/src/generated/apiPages.json | ||
!site/src/generated/meta.json | ||
|
||
# Added by cargo | ||
|
||
/target | ||
.yarn/cache | ||
.yarn/install-state.gz | ||
.turbo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.