Basic commit to add get pages showing

- bootstrap script
- run script
- couple of views
- basic config
This commit is contained in:
Martyn Inglis
2015-12-10 10:56:59 +00:00
parent 761e7b4444
commit e25ca0e434
11 changed files with 169 additions and 6 deletions

21
config.py Normal file
View File

@@ -0,0 +1,21 @@
class Config(object):
DEBUG = False
class Development(Config):
DEBUG = True
class Test(Config):
DEBUG = True
class Live(Config):
pass
configs = {
'development': Development,
'test': Test,
'live': Live,
}