Set up the build logs to use our fake build logs on test and local.
This commit is contained in:
parent
580bb152fe
commit
bcb993a914
8 changed files with 47 additions and 11 deletions
2
app.py
2
app.py
|
@ -13,6 +13,7 @@ from data.userfiles import Userfiles
|
|||
from util.analytics import Analytics
|
||||
from util.exceptionlog import Sentry
|
||||
from data.billing import Billing
|
||||
from data.buildlogs import BuildLogs
|
||||
|
||||
|
||||
OVERRIDE_CONFIG_FILENAME = 'conf/stack/config.py'
|
||||
|
@ -46,3 +47,4 @@ userfiles = Userfiles(app)
|
|||
analytics = Analytics(app)
|
||||
billing = Billing(app)
|
||||
sentry = Sentry(app)
|
||||
build_logs = BuildLogs(app)
|
||||
|
|
Reference in a new issue