mirror of
https://github.com/blackboxprogramming/alexa-amundson-portfolio.git
synced 2026-03-18 06:34:00 -05:00
- Express server with Stripe Checkout sessions, webhooks, and service catalog - Frontend checkout page wired to Stripe API (consultation, audit, retainer) - Playwright E2E tests covering health, services, checkout flow, and portfolio - deploy-to-pi.sh: rsync + systemd deployment to Raspberry Pi(s) - GitHub Actions workflow: run E2E tests then auto-deploy to Pi on merge - Replace BlackRoad proprietary license with MIT - Remove 11 bloated marketing/verification docs and fake metrics - Clean up BlackRoad branding from homepage and workflows https://claude.ai/code/session_01FmCd6rGDd2jS8JNzyL4e5G
15 lines
383 B
Plaintext
15 lines
383 B
Plaintext
# Stripe
|
|
STRIPE_SECRET_KEY=sk_test_your_test_key_here
|
|
STRIPE_PUBLISHABLE_KEY=pk_test_your_test_key_here
|
|
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret_here
|
|
|
|
# Server
|
|
PORT=3000
|
|
NODE_ENV=production
|
|
BASE_URL=http://localhost:3000
|
|
|
|
# Raspberry Pi deployment targets (comma-separated)
|
|
PI_HOSTS=pi@192.168.1.100,pi@192.168.1.101
|
|
PI_DEPLOY_PATH=/opt/portfolio
|
|
PI_SSH_KEY=~/.ssh/id_ed25519
|