-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.yaml
More file actions
53 lines (42 loc) · 1.63 KB
/
Copy pathsettings.yaml
File metadata and controls
53 lines (42 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# This settings.yaml file is kept alongside the install location,
# and will provide default settings to the application
# How to fill in fields? -------------------------------------------------------
# For fields that you want to leave undefined, leave them as null
# All fields get read in to a global settings.cfg.SETTING_NAME object.
# How to set secrets? ----------------------------------------------------------
# For each setting below, a value found in the environment prefixed with
# SPACKMON_ will override it. This means that you should generally leave
# secrets unset (e.g., SENDGRID keys). and insteaed explort them in the
# environment (e.g., SPACKMON_SENDGRID_API_KEY).
# Force use of sqlite (set to none null)
USE_SQLITE: null
SITE_TITLE: Tunel Django
# Global server settings
ENVIRONMENT: test
DOMAIN_NAME: http://127.0.0.1
DOMAIN_PORT: 5000
# Set to non Null to disable authentication (not recommended)
# To change autheticated views, edit settings.py
DISABLE_AUTHENTICATION: null
# Enable authentication with GitHub (requires environment export of
# SOCIAL_AUTH_GITHUB_KEY and SOCIAL_AUTH_GITHUB_SECRET
ENABLE_GITHUB_AUTH: true
# Caching
# Will default to local "cache" folder in repository root
CACHE_DIR: null
DISABLE_CACHE: true
# Logging
LOG_LEVEL: "WARNING"
ENABLE_SENTRY: False
SENTRY_DSN: "https://xxxxxxxxxxxxxxxxxxxxxxx@sentry.io/xxxxxxx"
# API
# The prefix for the API
URL_API_PREFIX: v1
API_TOKEN_EXPIRES_SECONDS: 6000
# If you change the authentication server, set to non null
AUTH_SERVER: null
# Social media networks
TWITTER_USERNAME": null
FACEBOOK_USERNAME": null
INSTAGRAM_USERNAME": null
GITHUB_REPOSITORY": null