add tournament creation

This commit is contained in:
2025-11-28 22:05:35 -08:00
parent 6bee823c46
commit fb175c38fe
2 changed files with 56 additions and 8 deletions

2
app.py
View File

@@ -5,7 +5,7 @@ import psycopg2 as sql
from textwrap import dedent
DB_NAME, DB_USER, DB_PASSWORD, DB_HOST, DB_PORT = "database", "user", "password", "localhost", "5432"
connection = allfence.connect(
connection = allfence.create_database_connection(
db_name=DB_NAME,
user=DB_USER,
password=DB_PASSWORD,