code: updating justfile with watch command, adding logging functionality, control+c detection, host/port loading from env, and a file listing example for an alternative source besides databases

This commit is contained in:
2023-12-30 17:59:04 +01:00
parent 0548b910b1
commit da01827419
7 changed files with 238 additions and 3 deletions

View File

@@ -8,6 +8,9 @@ default:
run args='miniweb':
@cargo run --bin {{args}}
watch:
cargo watch -c -q -w src -x run
status:
@echo "Docker Images:"
cd docker && docker-compose ls
@@ -29,6 +32,7 @@ migrate:
# Install Developer dependencies
dev-install:
cargo install sea-orm-cli
cargo install cargo-watch
# Reset Database
dev-reset: