Add a dev-env.sh script you can source in dev
In dev we need some environment variables set to allow us to at least test the site. Add a file we can source to get past this step.
This commit is contained in:
parent
2eb2383b6c
commit
e637772265
1 changed files with 5 additions and 0 deletions
5
dev-env.sh
Normal file
5
dev-env.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
# source this for fake developer settings
|
||||
|
||||
export DJANGO_SECRET_KEY=`uuidgen -r`
|
||||
export STRIPE_PUBLIC_KEY=`uuidgen -r`
|
||||
export STRIPE_SECRET_KEY=`uuidgen -r`
|
Loading…
Reference in a new issue