Is it possible to deploy a django api with SQLITE instead of postgresql?

in my django api i am using sqlite , is it possible to deploy it on railway?
3 Replies
Percy
Percy15mo ago
Project ID: ff1b6e03-7a20-4873-aafd-a8ae6ba8d8d0
rayanthecoder
rayanthecoder15mo ago
ff1b6e03-7a20-4873-aafd-a8ae6ba8d8d0
MantisInABox
MantisInABox15mo ago
You can if you want to, but the database will get wiped anytime you do a new deploy as the container file system is ephemeral It’s better to use a database like Postgres in production. You can find the configuration variables in the template: https://GitHub.com/railwayapp-templates/Django