[Fixed]-Cannot find the place where username and password are stored while going through Python Django tutorials

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.

Leave a comment