aboutsummaryrefslogtreecommitdiff
path: root/app/config.yml
blob: 80a9d6e714e5660dd2725effc9290024f021e7ea (plain) (blame)
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
---
# Postgres Example
db_default:
  ENGINE: django.db.backends.postgresql
  NAME: dispatch
  USER: postgres
  PASSWORD: 
  HOST: 127.0.0.1
  PORT: 5432
# MySQL Example
# db_default:
#   ENGINE: django.db.backends.mysql
#   NAME: dispatch_test
#   USER: dispatch
#   PASSWORD: ahB2lee5
#   HOST: 127.0.0.1
#   PORT: 3306
# Sqlite example. Full path is recommended
# db_default:
#   ENGINE: django.db.backends.sqlite3
#   NAME: /home/mitch/scm/dispatch-tracker/app/db.sqlite3

allowed_hosts:
  - example.com

static_root: '/full/path/to/static/root'