codenameyau / vagrant-boxes

:gift: Collection of vagrant boxes
2 stars 0 forks source link

Create script to generate secrets.json #1

Closed codenameyau closed 9 years ago

codenameyau commented 9 years ago

Should generate the file: project/settings/secrets.json

SECRET_KEY should be auto generated.

Some other secret goodies may include API keys and password related settings.

codenameyau commented 9 years ago

The secret key can be autogenerated with this django extension's management command:

./manage.py generate_secret_key

codenameyau commented 9 years ago

Simpler to have the users perform this operation as it only takes a few seconds.

Documented here in the wiki: https://github.com/codenameyau/django-vanilla/wiki/Development-Setup#2-generate-secret-key

codenameyau commented 9 years ago

Will write a python script to accomplish this goal.