From 278c24c022159ca0c2f93dc7c331f7c3a814d8ee Mon Sep 17 00:00:00 2001 From: yznahmad Date: Fri, 20 Jun 2025 04:07:28 +0300 Subject: [PATCH] Fix worker container to use main.pysss instead of worker.py --- helpers/create_account.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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')