test4
All checks were successful
Build Docker / deploy (push) Successful in 39s
Build Docker / build (push) Successful in 40s

This commit is contained in:
2026-03-06 23:32:48 +03:00
parent 95f4cc4e6e
commit 97ccd99b75
3 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
hosts: servers hosts: servers
become: yes become: yes
vars: vars:
env_file: .env env_file: $(pwd)/.env
tasks: tasks:
- name: Install wget - name: Install wget

View File

@@ -1,6 +1,6 @@
FROM python:3.13-slim FROM python:3.13-slim
WORKDIR /home WORKDIR /home/backend
COPY ../ /home/backend COPY ../ /home/backend
RUN python -m pip install --upgrade pip \ RUN python -m pip install --upgrade pip \

View File

@@ -1,4 +1,4 @@
#!/bin/sh #!/bin/sh
alembic -c server/backend/database/alembic/alembic.ini revision --autogenerate alembic -c server/backend/database/alembic/alembic.ini revision --autogenerate
alembic -c server/backend/database/alembic/alembic.ini upgrade head alembic -c server/backend/database/alembic/alembic.ini upgrade head
exec python run.py exec python run.py --user_name admin