From 864d33486d19841fc8ff9113576d6f2c4245494f Mon Sep 17 00:00:00 2001 From: Sorrel Bri Date: Fri, 11 Oct 2019 23:04:11 -0700 Subject: [PATCH] move config to environment variables --- app.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/app.py b/app.py index 5b00bf9..c5f1062 100644 --- a/app.py +++ b/app.py @@ -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)