Changable db path

This commit is contained in:
JuniorJPDJ 2020-12-23 16:59:12 +01:00 committed by GitHub
parent 64877e4e48
commit 46bc6c4dbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -20,12 +20,13 @@
from config import TOKEN, WORKERS
import logging
import os
from telegram.ext import Updater
from game_manager import GameManager
from database import db
db.bind('sqlite', 'uno.sqlite3', create_db=True)
db.bind('sqlite', os.getenv('UNO_DB', 'uno.sqlite3'), create_db=True)
db.generate_mapping(create_tables=True)
gm = GameManager()