Skip to content

Commit

Permalink
move env var to flags (#744)
Browse files Browse the repository at this point in the history
* move env var to flags
  • Loading branch information
kaplanelad authored Sep 13, 2024
1 parent 52e4f82 commit a556367
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
toolchain: nightly
- run: |
cargo install loco-cli
ALLOW_IN_GIT_REPO=true LOCO_APP_NAME=saas LOCO_TEMPLATE=saas loco new
ALLOW_IN_GIT_REPO=true loco new --template saas --name saas --db sqlite --bg async --assets serverside
- run: |
cargo build
working-directory: ./saas
Expand All @@ -40,7 +40,7 @@ jobs:
toolchain: nightly
- run: |
cargo install loco-cli
ALLOW_IN_GIT_REPO=true LOCO_APP_NAME=restapi LOCO_TEMPLATE=rest-api loco new
ALLOW_IN_GIT_REPO=true loco new --template rest-api --name restapi --db sqlite --bg async
- run: |
cargo build
working-directory: ./restapi
Expand All @@ -58,10 +58,9 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
override: true
- run: |
cargo install loco-cli
ALLOW_IN_GIT_REPO=true LOCO_APP_NAME=lightweight LOCO_TEMPLATE=lightweight-service loco new
ALLOW_IN_GIT_REPO=true loco new --template lightweight-service --name lightweight --db sqlite --bg async
- run: |
cargo build
working-directory: ./lightweight

0 comments on commit a556367

Please sign in to comment.