23 lines
535 B
Plaintext
23 lines
535 B
Plaintext
# LinkSyncServer Environment Variables
|
|
|
|
# Database
|
|
DB_PASSWORD=your_secure_database_password_here
|
|
DATABASE_URL=postgresql://linksync:${DB_PASSWORD}@localhost:5432/linksync
|
|
|
|
# JWT Secret (generate with: openssl rand -base64 32)
|
|
SECRET_KEY=your_secret_key_here
|
|
|
|
# Admin User (first user created)
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_PASSWORD=your_admin_password_here
|
|
|
|
# Application
|
|
DEBUG=False
|
|
HOST=0.0.0.0
|
|
PORT=5000
|
|
|
|
# CORS - Comma-separated list of allowed origins
|
|
CORS_ORIGINS=http://localhost:5555,http://localhost:80
|
|
|
|
# Logging
|
|
LOG_LEVEL=INFO |