16 lines
		
	
	
		
			378 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			378 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Stripe Configuration
 | 
						|
STRIPE_PUBLISHABLE_KEY=pk_test_your_publishable_key_here
 | 
						|
STRIPE_SECRET_KEY=sk_test_your_secret_key_here
 | 
						|
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret_here
 | 
						|
 | 
						|
# Server Configuration
 | 
						|
PORT=8080
 | 
						|
HOST=127.0.0.1
 | 
						|
RUST_LOG=info
 | 
						|
 | 
						|
# Database (if needed)
 | 
						|
DATABASE_URL=sqlite:./data/app.db
 | 
						|
 | 
						|
# Security
 | 
						|
JWT_SECRET=your_jwt_secret_here
 | 
						|
CORS_ORIGIN=http://127.0.0.1:8080 |