Major refactoring of build_deploy action, along with docker building and packaging improvements. Added no_signups and other .env improvements. There is no longer a separate .env.dev, both use .env now.
This commit is contained in:
parent
76b2becc24
commit
6f57699c8d
28 changed files with 795 additions and 328 deletions
4
.vscode/tasks.json
vendored
4
.vscode/tasks.json
vendored
|
|
@ -10,13 +10,13 @@
|
|||
{
|
||||
"label": "Build & run app",
|
||||
"type": "shell",
|
||||
"command": "docker compose up --build",
|
||||
"command": "./scripts/prebuild.sh && docker compose up --build",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Build & run app (no build cache)",
|
||||
"type": "shell",
|
||||
"command": "docker compose up --build --no-cache",
|
||||
"command": "./scripts/prebuild.sh && docker compose build --no-cache && docker compose up",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue