diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-03-30 17:05:51 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-03-30 17:07:09 -0400 |
| commit | 1662608835099ee3176d07d67c6a3c69f716f938 (patch) | |
| tree | 6a891bdc439c32e0c10369d91e55c9b4e444c65f /bot/src/db/config | |
| parent | 3c61c156137984cf61d3517d4d9633ca6de072f6 (diff) | |
| download | AleeBot-1662608835099ee3176d07d67c6a3c69f716f938.tar.gz AleeBot-1662608835099ee3176d07d67c6a3c69f716f938.tar.bz2 AleeBot-1662608835099ee3176d07d67c6a3c69f716f938.zip | |
Fixed issues; Generate bot invite; Added database migrations
Diffstat (limited to 'bot/src/db/config')
| -rw-r--r-- | bot/src/db/config/config.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/bot/src/db/config/config.json b/bot/src/db/config/config.json new file mode 100644 index 0000000..6efe0e6 --- /dev/null +++ b/bot/src/db/config/config.json @@ -0,0 +1,20 @@ +{ + "development": { + "host": "localhost", + "dialect": "sqlite", + "logging": false, + "storage": "database.db" + }, + "test": { + "host": "localhost", + "dialect": "sqlite", + "logging": false, + "storage": "database.db" + }, + "production": { + "host": "localhost", + "dialect": "sqlite", + "logging": false, + "storage": "database.db" + } +} |
