#!/bin/sh echo "this runs the DEBUG version..." sleep 1 export APP_DATABASE_URL="postgresql://pygame:password@localhost/pygame" export APP_WWW="static/" echo "The application may need a secure key, but for debugging it's not important that it's properly random..." export APP_SECRET_KEY="s3cret-stuff-blah" export APP_DEBUG=1 echo "APP_DEBUG=$APP_DEBUG" pygameweb_front #Flask should say how to get to the app--normally "Running on http://localhost:5000/"