mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-11 00:32:38 +02:00
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:
parent
f21e1a5b58
commit
f2e38c52a1
17 changed files with 7028 additions and 739 deletions
|
|
@ -75,6 +75,8 @@ if not config.BACKEND_URL or (
|
|||
[
|
||||
"http://localhost:3000",
|
||||
"http://127.0.0.1:3000",
|
||||
"http://localhost:3999",
|
||||
"http://127.0.0.1:3999",
|
||||
]
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue