Files @ 59207eb0c971
Branch filter:

Location: symposion_app/dev-env.sh

Jamie Lennox
Other suggested django migrations

So django keeps strict synchronization between its code and migrations
so that it can help generating new migrations. These are the additional
suggested migrations. A lot of these are a null effect, some are things
like transforming an unsigned integer to a signed integer. So not super
urgent on a small scale, but worth doing to keep django happy.
1
2
3
4
5
6
# source this for fake developer settings

export DJANGO_SECRET_KEY=`uuidgen -r`
export STRIPE_PUBLIC_KEY=`uuidgen -r`
export STRIPE_SECRET_KEY=`uuidgen -r`
export DATABASE_URL='sqlite:////tmp/symposion.sqlite'