mirror of
https://github.com/fcwu/docker-ubuntu-vnc-desktop
synced 2025-12-07 08:56:16 +01:00
15 lines
216 B
Python
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
|