e637772265
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.
5 lines
157 B
Bash
5 lines
157 B
Bash
# source this for fake developer settings
|
|
|
|
export DJANGO_SECRET_KEY=`uuidgen -r`
|
|
export STRIPE_PUBLIC_KEY=`uuidgen -r`
|
|
export STRIPE_SECRET_KEY=`uuidgen -r`
|