@@ -3,7 +3,7 @@ class Settings: | |||||
PROJECT_VERSION: str = "1.0.0" | PROJECT_VERSION: str = "1.0.0" | ||||
POSTGRES_USER: str = "VMSBase" | POSTGRES_USER: str = "VMSBase" | ||||
POSTGRES_PASSWORD = "VMSBasePass" | POSTGRES_PASSWORD = "VMSBasePass" | ||||
POSTGRES_SERVER: str = "db" | |||||
POSTGRES_SERVER: str = "localhost" | |||||
POSTGRES_PORT: str = "5432" | POSTGRES_PORT: str = "5432" | ||||
POSTGRES_DB: str = "VMSData" | POSTGRES_DB: str = "VMSData" | ||||
DATABASE_URL = f"postgresql://{POSTGRES_USER}:{POSTGRES_PASSWORD}@{POSTGRES_SERVER}:{POSTGRES_PORT}/{POSTGRES_DB}" | DATABASE_URL = f"postgresql://{POSTGRES_USER}:{POSTGRES_PASSWORD}@{POSTGRES_SERVER}:{POSTGRES_PORT}/{POSTGRES_DB}" | ||||
@@ -3,6 +3,7 @@ from core.config import settings, createAdminAcc | |||||
from db.session import engine | from db.session import engine | ||||
from db.base import Base | from db.base import Base | ||||
from apis.base import api_router | from apis.base import api_router | ||||
from fastapi.middleware.cors import CORSMiddleware | |||||
def include_routes(app): # include all routes from our api/v1/ | def include_routes(app): # include all routes from our api/v1/ | ||||
@@ -21,7 +22,7 @@ def startup(): # start the project, and create the tables | |||||
app = startup() | app = startup() | ||||
app.add_middleware(CORSMiddleware, allow_origins=["*"], allow_credentials=True, allow_methods=["*"], allow_headers=["*"],) | |||||
# Testing stuff | # Testing stuff | ||||
@app.get("/") | @app.get("/") | ||||