-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Potentials off the top of my head:
- SQLite
- Very small size, flat-file based, will scale
- How do I serve an sqlite file safely without exposing it to the internet?
- localStorage API
- very easy to implement, low overhead, can offer personalised results without needing to handle user authentication
- a way of storing data, but not really a database system. It has storage limits, and converting back and forth form JSON isn't great practice for using an actual database or ORM.
- PostgreSQL/MySQL
- Traditional database, can use natively, or with an ORM, I'm assuming?
- A lot more overhead, more expensive to run, probably overkill for a project this size?
- Firebase (or similar)
- cloud-based, low overhead, nothing to manage?
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Todo