Skip to content

Commit

Permalink
Add provision command
Browse files Browse the repository at this point in the history
  • Loading branch information
aelred committed Sep 22, 2024
1 parent 47887bd commit 63a7ca1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
# Run the given ROM file
run rom:
cargo run --no-default-features --features=sdl -- '{{rom}}'

# Build the web version, storing the result in `./web/dist`
build-web:
cd web && npm install && npx webpack

# Build and serve the web version
serve:
cd web && npm install && npx webpack serve

# Run all tests
test:
cargo test
cargo test

# Provision infrastructure using Terraform
provision:
cd deploy/infrastructure && terraform apply

0 comments on commit 63a7ca1

Please sign in to comment.