-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🧘 deploy: Simplify deployment process (#234)
Simplify deployment process by copying files from `frontend/**` to `out/firebase/public/**` once only. Copy all firebase configs to out/firebase and run deployment from there. Clean up various little make things along the way. This merges the following commits: * build: Move version.json generation * make: Rework frontend-serve target * build: Remove separate `frontend` build step * scripts: Reorder functions for readability * deploy: Move deployment prep folder to out/ * make: Simplify deploy target naming .github/workflows/cicd.yaml | 4 ++-- .gitignore | 2 +- Makefile | 30 +++++++++++------------------- scripts/firebase-deploy | 31 ++++++++++++++++--------------- 4 files changed, 30 insertions(+), 37 deletions(-) Pull-Request: #234
- Loading branch information
Showing
4 changed files
with
30 additions
and
37 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
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,7 +1,7 @@ | ||
/.hermit/ | ||
/firebase/*.log | ||
/firebase/.firebase/ | ||
/firebase/public/ | ||
/frontend/evy.wasm | ||
/frontend/version.json | ||
/frontend/wasm_exec.js | ||
/out/ |
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