|
24
|
1 |
# Base url for the application. default='' |
|
|
2 |
BASE_URL= |
|
|
3 |
|
|
|
4 |
# base url for static resources (ends with "/") |
|
|
5 |
# default : /static/ |
|
|
6 |
STATIC_URL=/static/ |
|
|
7 |
|
|
|
8 |
# The absolute path to the directory where collectstatic will collect static files for deployment. (https://docs.djangoproject.com/en/1.11/ref/settings/#std:setting-STATIC_ROOT) |
|
|
9 |
# default: <path to irinotes repository clone>/run/web/static |
|
|
10 |
STATIC_ROOT= |
|
|
11 |
|
|
|
12 |
# Absolute filesystem path to the directory that will hold user-uploaded files (https://docs.djangoproject.com/en/1.11/ref/settings/#media-root) |
|
|
13 |
# default: <path to irinotes repository clone>/run/web/media |
|
|
14 |
MEDIA_ROOT= |
|
|
15 |
|
|
|
16 |
# Secret key for the application. cf. https://docs.djangoproject.com/en/1.11/ref/settings/#secret-key |
|
|
17 |
SECRET_KEY=ARANDOMSECRETKEY |
|
|
18 |
|
|
|
19 |
# Debug the application. Default True |
|
|
20 |
DEBUG=<true|False> |
|
|
21 |
|
|
|
22 |
# Comma separated values of authorized host. cf. https://docs.djangoproject.com/en/1.11/ref/settings/#allowed-hosts |
|
|
23 |
# default: empty |
|
|
24 |
ALLOWED_HOSTS=127.0.0.1,localhost |
|
|
25 |
|
|
|
26 |
# 12factor inspired DATABASE_URL environment variable cf.https://github.com/kennethreitz/dj-database-url |
|
|
27 |
# examples: postgres://<user>:<password>@<host>:<port>/<db_name> |
|
|
28 |
# examples: sqlite:////full/path/to/your/database/file.sqlite |
|
|
29 |
# default: sqlite:///<path to irinotes repository clone>/run/db/db.sqlite3 |
|
|
30 |
DATABASE_URL=sqlite:///<path to irinotes repository clone>/run/db/db.sqlite3 |
|
|
31 |
|
|
|
32 |
# path for the log file |
|
|
33 |
# default: <path to irinotes repository clone>/run/log/log.txt |
|
|
34 |
LOG_FILE= |
|
|
35 |
|
|
|
36 |
# log level one of CRITICAL, ERROR, WARNING, INFO, DEBUG, NOTSET. Default: ERROR |
|
|
37 |
LOG_LEVEL=DEBUG |