Skip to content

Commit 1953065

Browse files
fix: update .env from POSTGRES_* to MSSQL_* variables for SQL Server migration
The .env file still had old POSTGRES_* variables which would break local development and docker compose since config.py now expects MSSQL_* variables. This matches the variables used in compose.yml and backend/app/core/config.py. Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
1 parent e2eb954 commit 1953065

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

.env

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,13 @@ SMTP_TLS=True
3131
SMTP_SSL=False
3232
SMTP_PORT=587
3333

34-
# Postgres
35-
POSTGRES_SERVER=localhost
36-
POSTGRES_PORT=5432
37-
POSTGRES_DB=app
38-
POSTGRES_USER=postgres
39-
POSTGRES_PASSWORD=changethis
34+
# SQL Server
35+
MSSQL_SERVER=localhost
36+
MSSQL_PORT=1433
37+
MSSQL_DB=app
38+
MSSQL_USER=sa
39+
MSSQL_PASSWORD=Changethis1!
40+
MSSQL_DRIVER=ODBC Driver 18 for SQL Server
4041

4142
SENTRY_DSN=
4243

0 commit comments

Comments
 (0)