# Database Configuration DATABASE_URL=postgresql://user:password@localhost:5432/meteor_dev TEST_DATABASE_URL=postgresql://username:password@host:port/test_database_name # JWT Configuration JWT_ACCESS_SECRET=your-super-secret-access-key-change-this-in-production JWT_REFRESH_SECRET=your-super-secret-refresh-key-change-this-in-production JWT_ACCESS_EXPIRATION=15m JWT_REFRESH_EXPIRATION=7d # Optional - Application Configuration PORT=3000 NODE_ENV=development # Optional - Security Configuration BCRYPT_SALT_ROUNDS=10 # AWS Configuration (required for event upload functionality) AWS_REGION=us-east-1 AWS_ACCESS_KEY_ID=your-aws-access-key-id AWS_SECRET_ACCESS_KEY=your-aws-secret-access-key AWS_S3_BUCKET_NAME=meteor-events-bucket AWS_SQS_QUEUE_URL=https://sqs.us-east-1.amazonaws.com/123456789012/meteor-events-queue # Payment Provider Configuration # Stripe STRIPE_API_KEY=sk_test_your_stripe_secret_key_here STRIPE_WEBHOOK_SECRET=whsec_your_stripe_webhook_secret_here # Additional payment providers can be added here: # PAYPAL_CLIENT_ID=your_paypal_client_id # PAYPAL_WEBHOOK_SECRET=your_paypal_webhook_secret # ALIPAY_API_KEY=your_alipay_api_key # ALIPAY_WEBHOOK_SECRET=your_alipay_webhook_secret # WECHAT_API_KEY=your_wechat_api_key # WECHAT_WEBHOOK_SECRET=your_wechat_webhook_secret