Skip to content
This repository has been archived by the owner on Jul 18, 2022. It is now read-only.

Commit

Permalink
Add fields to config
Browse files Browse the repository at this point in the history
  • Loading branch information
cofob committed Feb 20, 2022
1 parent f20886f commit 7f27655
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions config.yml.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,33 @@ RCON_HOST: "localhost"
RCON_PASSWORD: "Sup3rsecr33tranDomstr1ng"
RCON_PORT: 25575 # optional

INSTALLED_APPS:
- "django.contrib.admin"
- "django.contrib.auth"
- "django.contrib.contenttypes"
- "django.contrib.sessions"
- "django.contrib.messages"
- "django.contrib.staticfiles"
- "autodonate"
- "autodonate.lib"
- "autodonate_placeholder_plugin"

CONTEXT_PROCESSORS:
- "django.template.context_processors.debug"
- "django.template.context_processors.request"
- "django.contrib.auth.context_processors.auth"
- "django.contrib.messages.context_processors.messages"
- "autodonate.lib.context_processors.global_variables"

MIDDLEWARE:
- "django.middleware.security.SecurityMiddleware"
- "django.contrib.sessions.middleware.SessionMiddleware"
- "django.middleware.common.CommonMiddleware"
- "django.middleware.csrf.CsrfViewMiddleware"
- "django.contrib.auth.middleware.AuthenticationMiddleware"
- "django.contrib.messages.middleware.MessageMiddleware"
- "django.middleware.clickjacking.XFrameOptionsMiddleware"

# Change this to your db config or path
DATABASE:
ENGINE: "django.db.backends.sqlite3"
Expand All @@ -16,3 +43,8 @@ DATABASE:
URLPATTERNS:
"<index>":
path: "autodonate_placeholder_plugin.urls"

LANGUAGE_CODE: "ru-ru"
TIME_ZONE: "UTC"

STATIC_ROOT: "static"

0 comments on commit 7f27655

Please sign in to comment.