Get staging to run under docker on an EC2 host.
This commit is contained in:
parent
0fd5da172e
commit
8fac0474b5
8 changed files with 40 additions and 41 deletions
|
@ -1,11 +1,12 @@
|
|||
import logging
|
||||
|
||||
from app import app as application
|
||||
from data.model import db as model_db
|
||||
|
||||
# Initialize logging
|
||||
application.config['LOGGING_CONFIG']()
|
||||
|
||||
from data.model import db as model_db
|
||||
|
||||
# Turn off debug logging for boto
|
||||
logging.getLogger('boto').setLevel(logging.CRITICAL)
|
||||
|
||||
|
|
Reference in a new issue