Skip to content
Snippets Groups Projects
Commit 440c06a5 authored by plup's avatar plup
Browse files

feature: added missing mandatory params in template config

parent ce53b754
No related branches found
No related tags found
No related merge requests found
......@@ -288,6 +288,7 @@ SECRET_KEY = ''
# Default server url
SITE_URL = 'http://localhost:8000/'
BASE_URL = SITE_URL
# Default URL conf
ROOT_URLCONF = 'djangoldp.urls'
......
dependencies:
- git+https://git.startinblox.com/djangoldp-packages/djangoldp-account.git
ldppackages:
server:
# App specific settings
# Django required settings
# DjangoLDP required settings
DEBUG: true
ALLOWED_HOSTS:
- '*'
SECRET_KEY: "{{secret_key}}"
SECRET_KEY: '{{secret_key}}'
DATABASES:
default:
ENGINE: django.db.backends.sqlite3
......@@ -21,3 +19,9 @@ server:
PROSODY_HTTP_URL:
JABBER_DEFAULT_HOST:
ACCOUNT_ACTIVATION_DAYS: 10
# needs review (could be defined elsewhere)
ROOT_URLCONF: server.urls
USE_ETAGS: true
DEFAULT_CONTENT_TYPE: text/html
FILE_CHARSET: utf-8
......@@ -37,6 +37,13 @@ ldppackages:
# djangoldp runserver
```
### Add a distribution dependency
```
dependencies:
- git+https://git.startinblox.com/djangoldp-packages/djangoldp-account.git
```
## With PostgreSQL backend
```
......
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