This is the official API used by Rustory to server game files, manage Rustory accounts...
Before starting the API you need to generate the DB migrations and apply them.
bun migration:generateThis will be executed when you start the container so you can skip it
bun migration:migrateThe API can be started for development and production.
docker build -f Dockerfile.dev -t rustory-api-docker-dev .docker run --name rustory-api-dev -d -p 3000:3000 -v $(pwd)/db:/app/db -v $(pwd)/public:/app/public -v $(pwd)/src:/app/src rustory-api-docker-devdocker build -t rustory-api-docker .docker run --name rustory-api -d -p 3005:3000 -v $(pwd)/db:/app/db -v $(pwd)/public:/app/public rustory-api-docker