Nik-Khandelwal / regsoft

This is the repository for the registration software used in the BITS Open Sports Meet (BOSM), The Annual Sport's Festival of BITS Pilani, Pilani Campus.
http://bits-bosm.org/
4 stars 0 forks source link

Add python decouple #15

Open abhishekspeer opened 5 years ago

abhishekspeer commented 5 years ago

Python Decouple strictly separates the settings parameters from the source code. It adds parameters related to an instance of the project into a seperate .env file. All the environment-specific parameters (secret key, user, passwords, debug status and hosts to mention a few) can be kept into and changed from a single configuration module. Also, It enables changing parameters without having to redeploy the app.

Adding this into .gitignore later on will ensure that these are not pushed with the code.

The following dependency is required for this change:

    python-decouple