Skip to content

Commit fa70b2a

Browse files
committed
env variables configured
1 parent b89a400 commit fa70b2a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from pymongo.errors import PyMongoError
2121

2222
app = Flask(__name__)
23-
app.config["MONGO_URI"] = os.getenv("MONGODB_URI")
23+
app.config["MONGODB_URI"] = os.getenv("MONGODB_URI")
2424
app.config['SESSION_TYPE'] = 'mongodb'
2525
app.secret_key = os.getenv("SECRET_KEY", "traders_arena_secret_key")
2626
mongo = PyMongo(app)

0 commit comments

Comments
 (0)