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:
Jamie Lennox 2017-06-10 12:15:53 +10:00
parent 2eb2383b6c
commit e637772265

5
dev-env.sh Normal file
View 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`