gejdr-rs/backend.just
Lucien Cartier-Tilet 44914c4fc7
Some checks failed
CI / tests (push) Failing after 4m33s
feat: OAuth implementation with Discord
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.
2025-01-11 02:00:50 +01:00

20 lines
244 B
Plaintext

default: run
prepare:
pushd gejdr-backend
cargo sqlx prepare
popd
build:
cargo auditable build
build-release:
cargo auditable build --release
run:
cargo auditable run --bin gejdr-backend
## Local Variables:
## mode: makefile
## End: