- Database schema documentation (password if asked: 123345) or diagram only.
- API documentation
- Services' status page
For first-time database setup, there will be some SQL scripts to create database schema and seed data. This is done automatically if the volume of postgres database service is empty. See docker-compose.yml for more details.
To init development server, run the following commands:
# Install dependencies (if not installed yet)
pnpm install
# Rename `.env.example` to `.env`
cp .env.example .env
# Init services
pnpm dev # enable Docker compose's watch mode to auto rebuild Remix image on deps change; press Ctrl+C to exitTo stop development server, run:
# Remove services' containers and volumes
pnpm dev:down