docker-ubuntu-vnc-desktop/image/usr/lib/web/config/__init__.py
2017-02-26 12:53:08 +08:00

15 lines
216 B
Python

class Default(object):
DEBUG = True
class Development(Default):
PHASE = 'development'
class Staging(Default):
PHASE = 'staging'
class Production(Default):
PHASE = 'production'
DEBUG = False