1👍
✅
By default when you create a new site in using the startproject
command, the DATABASES setting uses an SQLite backend, which is a simple database stored in a file. This file will be called db.sqlite3
and appear in the same directory as your manage.py
file. All data is stored using this database.
SQLite is ok for local development, but you’ll want to use MySQL or Postrgres when running a site in production.
Source:stackexchange.com