API key working, CORS working, SocketIO working (but no JWT), Chat client v1, Session implemented (server side)

This commit is contained in:
Josako
2024-05-22 21:32:56 +02:00
parent 364da812ba
commit 54e2297399
12 changed files with 640 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
"""Defined interaction domain
Revision ID: e2735d216d3c
Revises: f88854b2ac59
Create Date: 2024-05-17 18:56:10.547571
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = 'e2735d216d3c'
down_revision = 'f88854b2ac59'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###