gege-jdr-backend/backend.just
Lucien Cartier-Tilet d9e29b62b7
All checks were successful
CI / tests (push) Successful in 17m15s
CI / tests (pull_request) Successful in 16m18s
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 03:03:23 +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: