Commit a865efe2 by Chif Gergő

Provide example configuration file

parent 8498e546
Pipeline #1157 failed with stage
in 1 minute 56 seconds
# This variables are interpreted automatically by the Docker Engine
# And by the Django runtime
# Django configuration
DJANGO_SECRET=django_secret_value
# settings.local for development and testing
# settings.production for production deployment
DJANGO_SETTINGS_MODULE=myproject.settings.local
# If using other database than sqlite3 (only use sqlite for development!)
# Provide the db credentials here
DATABASE_PASSWORD=database_password
DATABASE_USER=user
DATABASE_NAME=user
DATABASE_HOST=hostname_of_batabase
# For channels communication and periodic tasks we need a redis server
REDIS_HOST=redis_host
# OpenStack credentials
# In development we recommend using a DevStack installation
# These settings displayed in an admin dashboard or
# Can be downloaded from Horizon, as an admin user
OS_AUTH_URL=keysone_auth_url
OS_PROJECT_ID=project_id
OS_PROJECT_NAME=project_name
OS_USER_DOMAIN_NAME=domain_name
OS_USER_DOMAIN_ID=user_domain_id
OS_PROJECT_DOMAIN_ID=project_doamin_id
OS_USERNAME=username
OS_PASSWORD=password
OS_REGION_NAME=region_name
OS_INTERFACE=interface_type
OS_IDENTITY_API_VERSION=identity_api_version
\ No newline at end of file
# This file sets the environment variables in bare metal or
# Virtual machine deployment
# If you prefer deploy with docker, than use the .env file instead this
export DJANGO_SECRET = "very very secret key"
# settings.local for development and testing
# settings.production for production deployment
export DJANGO_SETTINGS_MODULE="myproject.settings.local"
# If using other database than sqlite3 (only use sqlite for development!)
# Provide the db credentials here
export DATABASE_PASSWORD="database_password"
export DATABASE_USER="user"
export DATABASE_NAME="user"
export DATABASE_HOST="hostname_of_batabase"
# For channels communication and periodic tasks we need a redis server
export REDIS_HOST="redis_host"
# OpenStack credentials
# In development we recommend using a DevStack installation
# These settings displayed in an admin dashboard or
# Can be downloaded from Horizon, as an admin user
export OS_AUTH_URL=http://example/identity/v3
export OS_PROJECT_ID=123456789
export OS_PROJECT_NAME="example"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment