initial commit

This commit is contained in:
Timur Gordon
2025-06-27 04:13:31 +02:00
commit b2ee21999f
134 changed files with 35580 additions and 0 deletions

16
platform/.env.example Normal file
View File

@@ -0,0 +1,16 @@
# 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