Create database before starting the client
This commit is contained in:
@@ -10,11 +10,11 @@ from discord_client.client import GhostBallClient
|
||||
from database.models import DATABASE, database, create_models
|
||||
|
||||
if __name__ == "__main__":
|
||||
client = GhostBallClient(intents=None)
|
||||
client.run(os.environ.get("discord_token"))
|
||||
|
||||
# Set up the database if we haven't already
|
||||
if not os.path.exists(DATABASE):
|
||||
database.connect()
|
||||
create_models()
|
||||
database.close()
|
||||
|
||||
client = GhostBallClient(intents=None)
|
||||
client.run(os.environ.get("discord_token"))
|
||||
|
Reference in New Issue
Block a user