From 5cfcf7f454af4694d066a1640067d57bbf6a930b Mon Sep 17 00:00:00 2001 From: Suiranoil Date: Tue, 4 Jul 2023 13:33:30 +0300 Subject: [PATCH] refactor: use local uri for dev --- .gitignore | 2 +- mixer-discord-bot/src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d9b8c96..839f54b 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,5 @@ mixer_discord_bot.iml .vscode # Rust -Secrets.toml +Secrets*.toml target/ diff --git a/mixer-discord-bot/src/main.rs b/mixer-discord-bot/src/main.rs index d918f87..6391858 100644 --- a/mixer-discord-bot/src/main.rs +++ b/mixer-discord-bot/src/main.rs @@ -34,7 +34,7 @@ impl TypeMapKey for CreatorContainer { #[shuttle_runtime::main] async fn serenity( #[shuttle_shared_db::Postgres( - // local_uri = "postgres://postgres:{secrets.PASSWORD}@localhost:5432/postgres" + local_uri = "postgres://postgres:admin@localhost:5432/mixer_bot" )] pool: PgPool, #[shuttle_secrets::Secrets] secret_store: SecretStore,