30 lines
901 B
Bash
30 lines
901 B
Bash
# ========================================
|
|
# Environment Variables for Docker Compose
|
|
# ========================================
|
|
# Copy this file to .env and modify values as needed
|
|
# cp docker-compose.env .env
|
|
|
|
# Database Configuration
|
|
DATABASE_CLIENT=postgres
|
|
DATABASE_HOST=postgres
|
|
DATABASE_PORT=5432
|
|
DATABASE_NAME=strapi
|
|
DATABASE_USERNAME=strapi
|
|
DATABASE_PASSWORD=strapi_password
|
|
DATABASE_SSL=false
|
|
|
|
# Strapi Configuration
|
|
NODE_ENV=development
|
|
JWT_SECRET=your-jwt-secret-here-change-this-in-production
|
|
ADMIN_JWT_SECRET=your-admin-jwt-secret-here-change-this-in-production
|
|
APP_KEYS=your-app-keys-here-change-this-in-production
|
|
API_TOKEN_SALT=your-api-token-salt-here-change-this-in-production
|
|
TRANSFER_TOKEN_SALT=your-transfer-token-salt-here-change-this-in-production
|
|
|
|
# Server Configuration
|
|
HOST=0.0.0.0
|
|
PORT=1337
|
|
|
|
# Client Configuration
|
|
CLIENT_NODE_ENV=development
|
|
STRAPI_URL=http://strapi:1337 |