Added PostgreSQL RDS database. Added channels protected endpoints. Added scripts and docker config to run application locally in dev mode.
Some checks failed
AWS Deploy on Push / build (push) Failing after 41s

This commit is contained in:
2025-05-21 14:02:01 -05:00
parent b947ac67f0
commit 489281f3eb
18 changed files with 409 additions and 125 deletions

View File

@@ -0,0 +1,4 @@
from .db import Base, ChannelDB
from .schemas import ChannelCreate, ChannelResponse
__all__ = ["Base", "ChannelDB", "ChannelCreate", "ChannelResponse"]