docker-compose up -dcd server
cp .env.example .env
npm install
npm startcd client
npm install
npm run devThe server requires a .env file for database connection. Copy .env.example to .env:
cp .env.example .envImportant: Never commit .env files to version control for security reasons.
- Ensure
.envfile exists in server directory - Check that MySQL container is running:
docker-compose ps - Reset database:
docker-compose down -v && docker-compose up -d
- Kill existing processes or use different ports
- Server: Change
PORTin.env - Client: Vite will automatically find available port