-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.env
14 lines (13 loc) · 1.15 KB
/
example.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Required
POSTGRES_USER=strapi_user # Must start with lowercase letter or underscore, only contain lowercase letters, numbers, and underscores (max 30 chars)
POSTGRES_PASSWORD=secure_password # Must not contain any special characters or spaces
POSTGRES_DB=strapi_db # Must start with lowercase letter or underscore, only contain lowercase letters, numbers, and underscores (max 30 chars)
STRAPI_APP_NAME=my_strapi_app # Must not contain any special characters or spaces
NODE_ENV=development # Possible values: development, production, staging
STRAPI_VERSION=5.0.0 # Must be a valid version number (e.g., 4.11.4, 4.12.0)
# Optional
JWT_SECRET= # A secure random string for JWT token generation
ADMIN_JWT_SECRET= # A secure random string for admin JWT token generation
APP_KEYS= # Comma-separated list of application keys
STRAPI_PLUGIN_I18N_INIT_LOCALE_CODE= # Initial locale code (e.g., en, fr, es)
STRAPI_TELEMETRY_DISABLED= # Set to true to disable Strapi telemetry, false to enable