Skip to content
Snippets Groups Projects
Commit dae9e063 authored by Tanner Prestegard's avatar Tanner Prestegard Committed by GraceDB
Browse files

Update settings description

parent 9f45b245
No related branches found
No related tags found
No related merge requests found
""" """
Django settings for gracedb project. Django settings for gracedb project.
Environment variable DJANGO_SETTINGS_MODULE should be set for a
given instance to determine the settings to run.
Description of settings files:
__init__.py - this file; determines whether to use production or test Description of settings:
settings for this GraceDB instance. BASE SETTINGS - not to be used as a full settings configuration
local.py - generated by Puppet, contains paths to useful directories, ---------------------------------------------------------------
virtualenv, and other settings. base.py - contains the basic settings for running a GraceDB
secret.py - generated by Puppet, contains secret settings like the server.
database password, API keys, etc. secret.py - generated by Puppet, contains secret settings like the
base.py - contains the basic settings for running a GraceDB server. database password, API keys, etc. For use with VM-based
These can be overridden in production.py or dev.py. Uses deployments. DO NOT EDIT.
settings in local.py and secret.py.
production.py - defines settings for a production GraceDB instance. Imports Virtual machine deployments
base.py settings and overrides/adds settings. ---------------------------
dev.py - defines settings for a development or testing server. vm/production.py - settings for a VM-based production instance deployed
Imports base.py settings and overrides/adds settings. with Puppet.
vm/dev.py - settings for Va M-based production instance deployed
with Puppet.
Container-based deployments
---------------------------
NOTE: many settings are imported from environment variables for
this deployment type!
container/production.py - settings for a container-based deployment
of a production instance.
container/dev.py - settings for a container-based deployment of a
development instance.
""" """
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment