You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
#secret key is a secret key for a particular Django installation. This is used to provide cryptographic signing, and should be set to a unique, unpredictable value.
#database is a database configuration for django. This is used to connect to the database.
#IGNORE THIS IF YOU ARE ON DEBUG MODE AS IT WILL USE SQLITE3 DATABASE
DB_NAME = 'postgres'
DB_USER = 'postgres'
DB_PASSWORD = 'postgres'
#if debug set to true, it will use sqlite3 database and will show debug information on the browser. Else, it will use postgres database and will not show debug information on the browser.