I uploaded my django project on github and I have a lot of commits on my project.
I don't want to delete my project and reupload it again.
what is the easiest way to hide secret key after uploading project to github and after a lot of commits?
I uploaded my django project on github and I have a lot of commits on my project.
I don't want to delete my project and reupload it again.
what is the easiest way to hide secret key after uploading project to github and after a lot of commits?
Create File => .env
Cut this from settings.py =>
SECRET_KEY = '-----your secret key-----'
Paste in .env
Write this in settings.py =>
from decouple import config
SECRET_KEY = config("SECRET_KEY")
Write this in terminal or cmd =>
pip install python-decouple
Then write this in terminal or cmd =>
pip freeze > requirements.txt
Go in cPanel and upload File .env
In the same directory where
manage.py
is, create a file whose name is.env
, and put inside it:where
SECRET_KEY = '....your secret key ....'
is the one indicated in yoursettings.py
.So cut this line from your
settings.py
and paste it in the.env
file.In the same directory, create a file whose name is
.gitignore
, and put inside it:Then in your
settings.py
, where previously you hadSECRET_KEY = '....your secret key ....'
, put:then in your command prompts run:
then add, commit and push on Github.
Here you can find out more information on how .gitignore works.