diff --git a/helpers/create_account.py b/helpers/create_account.py index 25fb852..d8673d3 100644 --- a/helpers/create_account.py +++ b/helpers/create_account.py @@ -31,10 +31,10 @@ def main(): user_coll = db['users'] user_coll.insert_one({ - # "username": args.username, - # "password": hash_password(args.password) - "username": os.getenv("ADMIN_USERNAME"), - "password": hash_password(os.getenv("ADMIN_PASSWORD")) + "username": args.username, + "password": hash_password(args.password) + # "username": os.getenv("ADMIN_USERNAME"), + # "password": hash_password(os.getenv("ADMIN_PASSWORD")) }) print('Account created successfully')