You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Clone repositorycd backend
# Install dependencies
npm install
# Start PostgreSQL in Docker
docker-compose up -d
# Run database migrations
npx prisma migrate dev
# Import world data
npm run import-world
# Start server
npm run dev