You will need
Starting the application
- Copy
.env.example
to.env
and set variables, get ESI variables from https://developers.eveonline.com/ and creating an application. - Run
sudo docker-compose up -d
to initialize postgres & valkey - Start the application with
cargo run
- Follow the admin link provided in the terminal to create an admin account
- Run migrations with
sea-orm-cli migrate up
orsea-orm-cli migrate down
- Generate entities with
sea-orm-cli generate entity -o ./entity/src/entities/ --with-serde both --date-time-crate chrono
Check github issues for contribution opportunities.
To implement a new feature
- Fork this repository (HOWTO)
- Create a new branch in your forked repo with
git checkout -b branch_name
- Commit changes to the branch
- Push to origin main
git push origin branch_name
- Create a pull request (HOWTO)
For any minor fixes open a pull request, include the issue # if necessary.