Merge pull request 'dev' (#8) from dev into main

Reviewed-on: #8
This commit is contained in:
2025-06-06 12:03:13 +03:00
3 changed files with 2 additions and 4 deletions

View File

@@ -55,9 +55,6 @@ jobs:
Repository: ${{ github.repository }} Repository: ${{ github.repository }}
See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}} See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}}
- name: Check fail
run: echo "Unreachable"
- name: Notify in telegram about success - name: Notify in telegram about success
uses: appleboy/telegram-action@master uses: appleboy/telegram-action@master
with: with:

View File

@@ -33,6 +33,7 @@ services:
volumes: volumes:
- pg-data:/var/lib/postgresql/data - pg-data:/var/lib/postgresql/data
environment: environment:
POSTGRES_DB: ${DATABASE_NAME}
POSTGRES_USER: ${DATABASE_USERNAME} POSTGRES_USER: ${DATABASE_USERNAME}
POSTGRES_PASSWORD: ${DATABASE_PASSWORD} POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
POSTGRES_PORT: ${DATABASE_PORT} POSTGRES_PORT: ${DATABASE_PORT}

View File

@@ -26,7 +26,7 @@ SECRET_KEY = os.getenv("DJANGO_SECRET_KEY")
# SECURITY WARNING: don't run with debug turned on in production! # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True DEBUG = True
ALLOWED_HOSTS = ["localhost"] ALLOWED_HOSTS = ["localhost", "app.saccada.xyz"]
# Application definition # Application definition