change db user and password to root

This commit is contained in:
max 2024-12-10 10:08:59 +00:00 committed by theycallhermax
parent 7310a3cdb5
commit d8d6dfda8a
No known key found for this signature in database
GPG key ID: 24D2803F3E25BF2D

View file

@ -8,8 +8,8 @@ RUN pip install --no-cache-dir -r requirements.txt
RUN echo $'DB_HOST = 127.0.0.1\n\ RUN echo $'DB_HOST = 127.0.0.1\n\
DB_NAME = catask\n\ DB_NAME = catask\n\
DB_USER = catask\n\ DB_USER = root\n\
DB_PASS = catask\n\ DB_PASS = root\n\
DB_PORT = 3306\n\ DB_PORT = 3306\n\
ADMIN_PASSWORD = $ADMIN_PASSWORD\n\ ADMIN_PASSWORD = $ADMIN_PASSWORD\n\
APP_SECRET = $(python3 -c "import secrets; print(secrets.token_hex())")' > .env APP_SECRET = $(python3 -c "import secrets; print(secrets.token_hex())")' > .env