-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update database url in env.example files
- Loading branch information
1 parent
95488a9
commit 5b3ae5d
Showing
3 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
TOKEN="" | ||
CLIENT_ID="" | ||
|
||
DATABASE_URL="myuser:mypassword@tcp(localhost:3306)/mydb?parseTime=true" | ||
DATABASE_URL="postgresql://admin:password123@senchabot_postgres_db:5432/senchabot" | ||
|
||
TWITCH_CLIENT_ID="" | ||
TWITCH_CLIENT_SECRET="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
DATABASE_URL="myuser:mypassword@tcp(localhost:3306)/mydb?parseTime=true" | ||
OAUTH="" | ||
|
||
DATABASE_URL="postgresql://admin:password123@senchabot_postgres_db:5432/senchabot" | ||
|
||
WEBHOOK_TOKEN="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
POSTGRES_HOST=127.0.0.1 | ||
POSTGRES_PORT=5432 | ||
POSTGRES_USER=admin | ||
POSTGRES_PASSWORD=password123 | ||
POSTGRES_DB=senchabot | ||
|
||
MYSQL_ROOT_PASSWORD=myrootpassword | ||
MYSQL_DATABASE=mydb | ||
MYSQL_USER=myuser | ||
MYSQL_PASSWORD=mypassword | ||
DATABASE_URL=mysql://myuser:mypassword@localhost:3306/mydb | ||
DATABASE_URL=postgresql://admin:password123@localhost:5432/senchabot?schema=public | ||
|
||
[email protected] | ||
PGADMIN_DEFAULT_PASSWORD=password123 |