generated from phundrak/rust-poem-openapi-template
Lucien Cartier-Tilet
a2ea5a157d
This commit separates the core features of géjdr from the backend as these will also be used by the bot in the future. This commit also updates the dependencies of the project. It also removes the dependency lettre as well as the mailpit docker service for developers as it appears clearer this project won’t send emails anytime soon. The publication of a docker image is also postponed until later.
19 lines
310 B
Plaintext
19 lines
310 B
Plaintext
default: run
|
|
|
|
build $SQLX_OFFLINE="1":
|
|
pwd
|
|
cargo auditable build --bin gejdr-backend
|
|
|
|
build-release $SQLX_OFFLINE="1":
|
|
cargo auditable build --release --bin gejdr-backend
|
|
|
|
build-docker:
|
|
nix build .#dockerBackend
|
|
|
|
run:
|
|
cargo auditable run --bin gejdr-backend
|
|
|
|
## Local Variables:
|
|
## mode: makefile
|
|
## End:
|