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

Rrayanthecoder5/22/2023
in my django api i am using sqlite , is it possible to deploy it on railway?
Rrayanthecoder5/22/2023
ff1b6e03-7a20-4873-aafd-a8ae6ba8d8d0
MMantisInABox5/22/2023
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
MMantisInABox5/22/2023
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