- Created migration index file to manage database migrations. - Added script to preload participation awards and related blog posts into the CMS. - Introduced new types and default data for application phases. - Added award articles data structure for the upcoming awards.
18 lines
472 B
Plaintext
18 lines
472 B
Plaintext
# SQLite database connection string
|
|
DATABASE_URL=file:./content.db
|
|
|
|
# VPS production example:
|
|
# DATABASE_URL=file:/var/www/bmp-website/shared/content.db
|
|
|
|
# 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
|