If my projects save you time or help you build something useful, you can support the work here.
Payments are processed securely by Stripe. You can donate $10 or more.
Minimal backend setup #
Run the backend from this repository root:
python3 -m venv .venv
source .venv/bin/activate
pip install -r scripts/requirements-stripe-donate.txt
export STRIPE_SECRET_KEY=sk_test_...
export SITE_URL=http://localhost:1313
python3 scripts/stripe_donate_server.py
By default, the donation form posts to http://localhost:4242/create-checkout-session.
Required environment variable:
{
"STRIPE_SECRET_KEY": "sk_test_..."
}