Every Django project is configurable by its settings module, its settings.py file. This is how you specify what database you’re using and how to connect to it, how to configure your template system, and of course what apps to install. A typical settings file contains a mix of general Django settings (like databases and the secret key), project app settings, and of course settings for standalone apps.
- 1.Third-party API integrations ...