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