From 177d607a7939b396643ff5fb66c880c110feda75 Mon Sep 17 00:00:00 2001 From: H4CK3R-01 Date: Tue, 3 May 2022 13:39:53 +0200 Subject: [PATCH] Added sqlite to .env.example --- .gitignore | 3 +++ source/.env.example | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c4cc609..cc87095 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ # IntelliJ / PyCharm .idea/ +db.db +db.sqlite3 + */.env #vscode diff --git a/source/.env.example b/source/.env.example index d9f160a..2617cae 100644 --- a/source/.env.example +++ b/source/.env.example @@ -2,4 +2,8 @@ BOT_API_KEY= # Database -DATABASE_CONNECTION=mysql+pymysql://scott:tiger@localhost/foo \ No newline at end of file +# MySQL +DATABASE_CONNECTION=mysql+pymysql://scott:tiger@localhost/foo + +# SQLite +# DATABASE_CONNECTION=sqlite:///db.db \ No newline at end of file