X-Git-Url: https://git.mdrn.pl/turniej.git/blobdiff_plain/479cb324a4cbc258f3f6de8de1025e7dccb1da2d..80b74642b6a6a375462d6eae7efb203981a412d6:/src/core/localsettings.py.template diff --git a/src/core/localsettings.py.template b/src/core/localsettings.py.template new file mode 100644 index 0000000..4345fcd --- /dev/null +++ b/src/core/localsettings.py.template @@ -0,0 +1,23 @@ +ADMINS = ( + #('Name', 'E-mail'), +) + +MANAGERS = ( + #('Name', 'E-mail'), +) + +# on +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. + 'NAME': '', # Or path to database file if using sqlite3. + 'USER': '', # Not used with sqlite3. + 'PASSWORD': '', # Not used with sqlite3. + 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. + 'PORT': '', # Set to empty string for default. Not used with sqlite3. + } +} + + +SECRET_KEY = %(secret_key)r +MEDIA_ROOT = '%(path)s/media/'