Some checks failed
Deploy Production / deploy (push) Failing after 5s
24 lines
519 B
Plaintext
24 lines
519 B
Plaintext
# Application
|
|
PORT=3000
|
|
NODE_ENV=development
|
|
|
|
# Database Configuration
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_USERNAME=postgres
|
|
DB_PASSWORD=postgres
|
|
DB_NAME=portfolio
|
|
|
|
# JWT Configuration
|
|
JWT_ACCESS_SECRET=your-super-secret-access-key-change-in-production
|
|
JWT_REFRESH_SECRET=your-super-secret-refresh-key-change-in-production
|
|
JWT_ACCESS_EXPIRATION=15m
|
|
JWT_REFRESH_EXPIRATION=7d
|
|
|
|
# Admin username (password set via /auth/setup on first run)
|
|
ADMIN_USERNAME=admin
|
|
|
|
# Cookie Settings
|
|
COOKIE_DOMAIN=localhost
|
|
COOKIE_SECURE=false
|