Skip to main content

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 sessions
  • STRIPE_SECRET_KEY – test or live key from Stripe
  • OPENAI_API_KEY – key from OpenAI
  • LICENSE_KEYS – comma‑separated list of valid keys
  • LICENSE_KEY – one of the above, to unlock the boilerplate
  • APP_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