forked from WFP-Dubai/ETS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuildout.cfg
More file actions
35 lines (27 loc) · 847 Bytes
/
buildout.cfg
File metadata and controls
35 lines (27 loc) · 847 Bytes
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
[buildout]
extends = base.cfg
parts =
${buildout:base-parts}
offliner
[instance]
settings = ets.dev_settings
wsgi = false
[offliner]
recipe = djangoprojectrecipe
python = interpreter
eggs = ${interpreter:eggs}
settings = offliner.settings
wsgi = false
[cmds]
cmds=
${cmds:base-cmds}
#Install compas stations
./bin/instance loaddata db_compas --database=default
./bin/instance loaddata warehouse --database=default
#Create compas database and install fixture
./bin/instance syncdb --noinput --database=ISBX002
./bin/instance loaddata compas --database=ISBX002
./bin/instance import_compas_full --verbosity=2
./bin/instance sync_compas --verbosity=2
#Install dev fixtures
./bin/instance loaddata development --database=default