Skip to content

Commit 4840d86

Browse files
committed
chore: add stripe server SDK, update .env.example with all platform env vars
1 parent d72683e commit 4840d86

3 files changed

Lines changed: 46 additions & 0 deletions

File tree

.env.example

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,30 @@ GITHUB_CLIENT_SECRET=your-github-client-secret
2727

2828
# ============= API Server =============
2929
API_PORT=3001
30+
NEXT_PUBLIC_API_URL=http://localhost:3001
31+
32+
# ============= AI Agent =============
33+
OPENROUTER_API_KEY=sk-or-v1-your-key-here
34+
NEXT_PUBLIC_AGENT_URL=http://localhost:8001
35+
36+
# ============= Rocket.Chat =============
37+
NEXT_PUBLIC_ROCKETCHAT_URL=http://localhost:3200
38+
RC_ADMIN_USERNAME=admin
39+
RC_ADMIN_PASS=admin123
40+
RC_ADMIN_EMAIL=admin@uet-platform.com
41+
42+
# ============= LiveKit (Video/Voice) =============
43+
NEXT_PUBLIC_LIVEKIT_URL=ws://localhost:7880
44+
LIVEKIT_API_KEY=devkey
45+
LIVEKIT_API_SECRET=devsecret
46+
47+
# ============= Stripe (Billing) =============
48+
STRIPE_SECRET_KEY=sk_test_your-stripe-secret-key
49+
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_test_your-stripe-publishable-key
50+
STRIPE_WEBHOOK_SECRET=whsec_your-webhook-secret
51+
52+
# ============= Cloudflare R2 (Media Storage) =============
53+
R2_ACCOUNT_ID=your-account-id
54+
R2_ACCESS_KEY_ID=your-access-key
55+
R2_SECRET_ACCESS_KEY=your-secret-key
56+
R2_BUCKET_NAME=uet-media

uet_web/package-lock.json

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

uet_web/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
"remark-gfm": "^4.0.1",
5858
"remark-math": "^6.0.0",
5959
"shadcn": "^4.0.2",
60+
"stripe": "^20.4.1",
6061
"tailwind-merge": "^3.5.0",
6162
"tailwind-scrollbar": "^4.0.2",
6263
"tailwindcss": "^4.2.1",

0 commit comments

Comments
 (0)