59 lines
1.1 KiB
Plaintext
59 lines
1.1 KiB
Plaintext
# Environment variables for application
|
|
APP_NAME=AstofoTV
|
|
APP_ENV=development # Change to "production" when deploying to production environment, this will disable some development features and enable production optimizations.
|
|
APP_DOMAIN=
|
|
APP_PROTOCOL=
|
|
APP_PORT=
|
|
APP_URL=
|
|
API_KEY=
|
|
ALLOWED_ORIGINS=www.nounoz.com,nounoz.com,localhost
|
|
|
|
# Admin user configuration
|
|
DEFAULT_ADMIN_EMAIL=
|
|
DEFAULT_ADMIN_USERNAME=
|
|
DEFAULT_ADMIN_PASSWORD=
|
|
|
|
# Application features
|
|
ENABLE_REGISTRATION=
|
|
ENABLE_HERO_BANNER=
|
|
|
|
# Auth Service configuration
|
|
SALT_ROUNDS=
|
|
JWT_SECRET=
|
|
SESSION_EXPIRE=
|
|
SESSION_CACHE_EXPIRE=
|
|
|
|
# MinIO configuration
|
|
MINIO_HOST=
|
|
MINIO_PORT=
|
|
MINIO_ACCESS_KEY=
|
|
MINIO_SECRET_KEY=
|
|
MINIO_BUCKET=
|
|
|
|
# MyAnimeList API credentials
|
|
MAL_CLIENT_ID=
|
|
MAL_CLIENT_SECRET=
|
|
|
|
# SMTP configuration
|
|
SMTP_HOST=
|
|
SMTP_PORT=
|
|
SMTP_SECURE=
|
|
SMTP_USER=
|
|
SMTP_PASS=
|
|
SMTP_FROM=
|
|
|
|
# Caching configuration
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=
|
|
|
|
# Database configuration
|
|
DATABASE_URL=
|
|
SHADOW_DATABASE_URL=
|
|
ENABLE_PRISMA_LOG=
|
|
|
|
# OAuth configuration
|
|
GITHUB_CLIENT_ID=
|
|
GITHUB_CLIENT_SECRET=
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET= |