# Mycopunk Swag - Environment Variables # Copy this file to .env and fill in your API credentials # NEVER commit .env to version control # =========================================== # Printful API # Get your token at: https://developers.printful.com/ # =========================================== PRINTFUL_API_TOKEN=your_printful_api_token_here # =========================================== # Prodigi API # Get keys at: https://dashboard.prodigi.com/ # =========================================== # Sandbox key for testing (orders not fulfilled) PRODIGI_API_KEY_SANDBOX=your_prodigi_sandbox_key_here # Live key for production orders PRODIGI_API_KEY_LIVE=your_prodigi_live_key_here # =========================================== # Stripe (for custom shop - Phase 5) # Get keys at: https://dashboard.stripe.com/ # =========================================== # STRIPE_SECRET_KEY=sk_test_xxx # STRIPE_WEBHOOK_SECRET=whsec_xxx # STRIPE_PUBLISHABLE_KEY=pk_test_xxx # =========================================== # Application Settings # =========================================== # Set to 'production' when ready for live orders MYCOPUNK_ENV=development # Default POD provider (printful or prodigi) DEFAULT_PROVIDER=prodigi # Enable debug logging DEBUG=false