- # Environment variables for development
- NODE_ENV=development
- # Database configuration
- DATABASE_URL=postgresql://postgres:password@localhost:5432/byop_sample
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=password
- POSTGRES_DB=byop_sample
- # Backend configuration
- PORT=5000
- JWT_SECRET=your-development-secret-key-change-in-production
- # Frontend configuration
- REACT_APP_API_URL=http://localhost:5000
|