Skip to content
Snippets Groups Projects
Commit 8072b27e authored by Michelle Weidling's avatar Michelle Weidling :blowfish:
Browse files

fix: update host

parent 809d2a74
No related branches found
No related tags found
No related merge requests found
Pipeline #446311 passed
......@@ -28,11 +28,10 @@ app.add_middleware(
allow_headers=['*'],
)
HOSTNAME = os.getenv('HOSTNAME')
USERNAME = os.getenv('USERNAME')
PASSWORD = os.getenv('PASSWORD')
CLIENT = MongoClient(f'mongodb://{USERNAME}:{PASSWORD}@{HOSTNAME}:27017/results?authSource=results')
CLIENT = MongoClient(f'mongodb://{USERNAME}:{PASSWORD}@localhost:27017/results?authSource=results')
DB = CLIENT.results
COLL = DB.quiver
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment