Explorar el Código

changed config to match that of docker

main
Madiwka3 hace 1 año
padre
commit
65b5ccd866
Se han modificado 2 ficheros con 2 adiciones y 1 borrados
  1. +1
    -1
      app/core/config.py
  2. +1
    -0
      docker-compose.yml

+ 1
- 1
app/core/config.py Ver fichero

@@ -3,7 +3,7 @@ class Settings:
PROJECT_VERSION: str = "1.0.0"
POSTGRES_USER: str = "VMSBase"
POSTGRES_PASSWORD = "VMSBasePass"
POSTGRES_SERVER: str = "localhost"
POSTGRES_SERVER: str = "db"
POSTGRES_PORT: str = "5432"
POSTGRES_DB: str = "VMSData"
DATABASE_URL = f"postgresql://{POSTGRES_USER}:{POSTGRES_PASSWORD}@{POSTGRES_SERVER}:{POSTGRES_PORT}/{POSTGRES_DB}"


+ 1
- 0
docker-compose.yml Ver fichero

@@ -7,6 +7,7 @@ services:
- "8000:2764"
depends_on:
- db
restart: always


db:


Cargando…
Cancelar
Guardar