move config to environment variables

This commit is contained in:
Sorrel Bri 2019-10-11 23:04:11 -07:00
parent 9d6d482c91
commit 864d33486d

12
app.py
View file

@ -12,19 +12,17 @@ bcrypt = Bcrypt(app)
app.config['CORS_HEADERS'] = 'Content-Type'
# ! Environment Variable
# TODO change to os.getenv('CONFIGURATION')
# TODO export CONFIGURATION='configuration.config.ProductionConfig'
app.config.from_object('configuration.config.DevelopmentConfig')
# TODO export CONFIGURATION_OBJECT='configuration.config.ProductionConfig'
app.config.from_object(os.getenv('CONFIGURATION_OBJECT'))
# ! Environment Variable
# TODO change to os.getenv('ALLOWED_ORIGIN')
# TODO export ALLOWED_ORIGIN= whatever the react server is
socketio = SocketIO(app, cors_allowed_origins="http://localhost:3000")
socketio = SocketIO(app, cors_allowed_origins=os.getenv('ALLOWED_ORIGIN'))
def create_app():
CORS(app, resources={
r"/api/*": {"origins": "http://localhost:3000"},
r"/auth/*": {"origins": "http://localhost:3000"},
r"/api/*": {"origins": os.getenv('ALLOWED_ORIGIN')},
r"/auth/*": {"origins": os.getenv('ALLOWED_ORIGIN')},
})
db.init_app(app)
ma.init_app(app)