Installation & Setup
Clone the repository
git clone git@github.com:you/blitzship.git
cd blitzship
Environment variables
Copy the example and fill in your keys:
cp .env.example .env
FLASK_SECRET_KEY
– random string for sessionsSTRIPE_SECRET_KEY
– test or live key from StripeOPENAI_API_KEY
– key from OpenAILICENSE_KEYS
– comma‑separated list of valid keysLICENSE_KEY
– one of the above, to unlock the boilerplateAPP_DOMAIN
– domain for checkout callbacks
Python dependencies
pip install -r requirements.txt
(Optional) Docker
docker build -t blitzship .
docker run -p 5000:8000 \
-e FLASK_ENV=prod \
-e STRIPE_SECRET_KEY=… \
-e OPENAI_API_KEY=… \
-e LICENSE_KEY=… \
blitzship