feat: Add initial strategic planning, UX design, and verification artifacts, define a new AI-powered crypto assistant epic, update existing epics, and disable SSL for local database connection.

This commit is contained in:
API Test Bot 2026-02-02 17:43:33 +07:00
parent f21e1a5b58
commit f2e38c52a1
17 changed files with 7028 additions and 739 deletions

View file

@ -1324,7 +1324,10 @@ else:
avatar_url = Column(String, nullable=True)
engine = create_async_engine(DATABASE_URL)
engine = create_async_engine(
DATABASE_URL,
connect_args={"ssl": False} # Disable SSL for local development
)
async_session_maker = async_sessionmaker(engine, expire_on_commit=False)