You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 26, 2023. It is now read-only.
Sqlite3 is a very capable database, which would work very well with Pushjet and make it much easier to install. Since Pushjet already uses SQLalchemy, there's no reason it couldn't easily support that backend. What's currently preventing sqlite3 from being used?
The text was updated successfully, but these errors were encountered:
It looks like the only thing preventing this is the database.sql file, which could presumably be written using the ORM instead, and would support any database backend SQLalchemy supports.
SQLAlchemy supports SQLite but right now I'm using two MySQL specific datatypes. I'll remove those to make sure that the database back-end can be anything SQLAlchemy supports.
That'd be great, thank you. For 99% of custom server deployments, SQLite will be ideal, since most people won't need to service many requests per second.
Sqlite3 is a very capable database, which would work very well with Pushjet and make it much easier to install. Since Pushjet already uses SQLalchemy, there's no reason it couldn't easily support that backend. What's currently preventing sqlite3 from being used?
The text was updated successfully, but these errors were encountered: