Remove secrets from version control
This commit is contained in:
parent
c789ebf291
commit
94756c243d
37
.env
37
.env
|
|
@ -1,37 +0,0 @@
|
||||||
# Docker Database Configuration (used by docker-compose)
|
|
||||||
ROOT_DB_PASSWORD=RootSecurePassword789!
|
|
||||||
APP_DB_PASSWORD=AppSecurePassword456!
|
|
||||||
PMA_CONTROL_PASS=ControlPassword123!
|
|
||||||
PMA_SECRET=YourBlowfishSecretKeyHere32CharsMinimum!
|
|
||||||
|
|
||||||
# Application Database Configuration (defaults - overridden in .env.local)
|
|
||||||
DB_HOST=localhost
|
|
||||||
DB_PORT=3306
|
|
||||||
DB_NAME=nordic_storium
|
|
||||||
DB_USER=nordic_app_user
|
|
||||||
DB_PASSWORD=AppSecurePassword456!
|
|
||||||
DATABASE_URL="mysql://nordic_app_user:AppSecurePassword456!@localhost:3306/nordic_storium"
|
|
||||||
|
|
||||||
# JWT Authentication
|
|
||||||
JWT_SECRET=YourSuperSecretJWTKeyForNordicStorium2024!
|
|
||||||
|
|
||||||
# Session Security
|
|
||||||
SESSION_SECRET=YourSessionSecretKey123!
|
|
||||||
ENCRYPTION_KEY=Your32ByteEncryptionKeyHere123456789012!
|
|
||||||
|
|
||||||
# Next.js Configuration
|
|
||||||
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
|
||||||
NEXT_PUBLIC_API_URL=/api
|
|
||||||
NODE_ENV=development
|
|
||||||
|
|
||||||
# Enable/Disable features
|
|
||||||
ENABLE_REGISTRATION=true
|
|
||||||
ENABLE_EMAIL_VERIFICATION=false
|
|
||||||
ENABLE_RATE_LIMITING=true
|
|
||||||
MAX_LOGIN_ATTEMPTS=5
|
|
||||||
|
|
||||||
CONTACT_EMAIL=ismail@abrahem.se
|
|
||||||
|
|
||||||
LOG_LEVEL=debug
|
|
||||||
ENABLE_SQL_LOGGING=false
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue