Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use PostgreSQL for .env files #280

Merged
merged 1 commit into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/.env
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PUBLIC_UI_URL="http://127.0.0.1:3000"
CONVERSION_URL="http://127.0.0.1:8083"
LANGUAGE_URL="http://127.0.0.1:8084"
MOSAIC_URL="http://127.0.0.1:8085"
POSTGRES_URL="postgresql://[email protected]:26257/voltaserve"
POSTGRES_URL="postgresql://[email protected]:5432/voltaserve"

# Security
SECURITY_JWT_SIGNING_KEY="586cozl1x9m6zmu4fg8iwi6ajazguehcm9qdfgd5ndo2pc3pcn"
Expand Down
2 changes: 1 addition & 1 deletion idp/.env
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PORT=8081

# URLs
PUBLIC_UI_URL="http://127.0.0.1:3000"
POSTGRES_URL="postgresql://[email protected]:26257/voltaserve"
POSTGRES_URL="postgresql://[email protected]:5432/voltaserve"

# Token
TOKEN_JWT_SIGNING_KEY="586cozl1x9m6zmu4fg8iwi6ajazguehcm9qdfgd5ndo2pc3pcn"
Expand Down
2 changes: 1 addition & 1 deletion migrations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ cargo build --release
Run locally:

```shell
DATABASE_URL=postgresql://voltaserve@localhost:26257/voltaserve ./target/release/migrate up
DATABASE_URL=postgresql://voltaserve@localhost:5432/voltaserve ./target/release/migrate up
```