[Django]-Producing a WAR file from a django project with SQLite

1👍

You should look into Fabric for easy deployment. I haven’t used it myself, but I’ve heard good things.
I’ve also had good success quickly and easily setting up servers using Gunicorn with Nginx as a reverse-proxy.

As others have said, using virtualenv, with pip, can quickly
get all your dependencies installed via requirements.txt (from virtualenv).

Some of these blog posts may help:

Edit:

As I reread your post I saw your last bullet point/question. Django is designed to be loosely coupled, meaning that there shouldn’t (in most cases) be reasons that one app is dependant on sqlite vs mysql. If you don’t need to save the data in the db, changing to MySQL is as easy as starting a mysql server on your machine, and changing the settings.py of your django project. This SO question may help

👤j_syk

Leave a comment