598a4c47e9
- Updated docker-compose.yml to use postgres:17-alpine - Database credentials: ogb/ogb_dev_password/ogb_web - Updated .env.example with correct PostgreSQL connection string - Fixed plugins/index.ts to include Project type in SEO generateTitle/generateURL - Changed site title from 'Payload Website Template' to 'OGB Solutions' - Database ready for dev server startup
15 lines
416 B
Bash
15 lines
416 B
Bash
# Database connection string
|
|
DATABASE_URI=postgres://ogb:ogb_dev_password@localhost:5432/ogb_web
|
|
|
|
# Used to encrypt JWT tokens
|
|
PAYLOAD_SECRET=YOUR_SECRET_HERE
|
|
|
|
# Used to configure CORS, format links and more. No trailing slash
|
|
NEXT_PUBLIC_SERVER_URL=http://localhost:3000
|
|
|
|
# Secret used to authenticate cron jobs
|
|
CRON_SECRET=YOUR_CRON_SECRET_HERE
|
|
|
|
# Used to validate preview requests
|
|
PREVIEW_SECRET=YOUR_SECRET_HERE
|