diff --git a/helpers/create_account.py b/helpers/create_account.py index 4c9a629..787d6a6 100644 --- a/helpers/create_account.py +++ b/helpers/create_account.py @@ -27,14 +27,14 @@ def main(): client = pymongo.MongoClient(DB_URI) # create the account - db = client['Infinity'] + db = client['InfinityGym'] 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') diff --git a/worker/main.py b/worker/main.py index 64a038a..9b268b7 100644 --- a/worker/main.py +++ b/worker/main.py @@ -13,7 +13,7 @@ class MAIN(): self.db_client : {} = pymongo.MongoClient(os.getenv("DB_URI")) self.log_dir : str = 'logs' self.log_file : str = 'scheduler.log' - self.db_name = "Infinity" + self.db_name = "InfinityGym" # statistics def save_this_week_overview_into_this_month(self):