Skip to content

Commit

Permalink
Use less common port for substiify database
Browse files Browse the repository at this point in the history
  • Loading branch information
jackra1n committed Mar 19, 2024
1 parent fd540b5 commit 2187b8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
image: postgres:16
container_name: substiify-postgres
ports:
- "5432:5432"
- "5440:5432"
volumes:
- ./postgres-data:/var/lib/postgresql/data
restart: unless-stopped
Expand Down
2 changes: 1 addition & 1 deletion core/config.py.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TOKEN = ""
PREFIX = ""

POSTGRESQL_DSN = "postgresql://[user]:[password]@[host]:[port]/[database_name]"
POSTGRESQL_DSN = "postgresql://[user]:[password]@localhost:5440/substiify"

LAVALINK_NODE_URL = "http://localhost:2333/"
LAVALINK_PASSWORD = "youshallnotpass"

0 comments on commit 2187b8f

Please sign in to comment.