Quick Start (5 Minutes)
Get up and running in under five minutes:
-
Clone the repo
git clone git@github.com:you/blitzship.git
cd blitzship -
Copy & edit the environment file
cp .env.example .env
# Fill in:
# FLASK_SECRET_KEY=
# STRIPE_SECRET_KEY=
# OPENAI_API_KEY=
# LICENSE_KEYS=KEY1,KEY2
# LICENSE_KEY=KEY1
# APP_DOMAIN=http://localhost:5000 -
Install dependencies
pip install -r requirements.txt
-
Run database migrations
flask db upgrade
-
Launch the app
flask run
Visit http://localhost:5000 → Sign up → Draft your first email!