From e5e2c104f7697987212a7700e678c66c749e766a Mon Sep 17 00:00:00 2001 From: Basyrov Rustam Date: Fri, 6 Jun 2025 11:17:08 +0300 Subject: [PATCH 1/3] remove fake job --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f1390c..87e903a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,9 +55,6 @@ jobs: Repository: ${{ github.repository }} See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}} - - name: Check fail - run: echo "Unreachable" - - name: Notify in telegram about success uses: appleboy/telegram-action@master with: From 9d33e8ccbc8c95192c864c853ff93f9ff3cf871e Mon Sep 17 00:00:00 2001 From: Basyrov Rustam Date: Fri, 6 Jun 2025 12:01:12 +0300 Subject: [PATCH 2/3] add saccada host --- mysite/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysite/settings.py b/mysite/settings.py index 0a5c1ea..24de387 100644 --- a/mysite/settings.py +++ b/mysite/settings.py @@ -26,7 +26,7 @@ SECRET_KEY = os.getenv("DJANGO_SECRET_KEY") # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = ["localhost"] +ALLOWED_HOSTS = ["localhost", "app.saccada.xyz"] # Application definition From 52012032a32734f7e07c8e4e26fba96b1487bf11 Mon Sep 17 00:00:00 2001 From: Basyrov Rustam Date: Fri, 6 Jun 2025 12:02:08 +0300 Subject: [PATCH 3/3] add db name to postgres --- compose.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/compose.yaml b/compose.yaml index 3183381..5cdfada 100644 --- a/compose.yaml +++ b/compose.yaml @@ -33,6 +33,7 @@ services: volumes: - pg-data:/var/lib/postgresql/data environment: + POSTGRES_DB: ${DATABASE_NAME} POSTGRES_USER: ${DATABASE_USERNAME} POSTGRES_PASSWORD: ${DATABASE_PASSWORD} POSTGRES_PORT: ${DATABASE_PORT}