-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvercel.json
More file actions
22 lines (22 loc) · 756 Bytes
/
vercel.json
File metadata and controls
22 lines (22 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"version": 2,
"builds": [
{
"src": "web/package.json",
"use": "@vercel/next"
}
],
"env": {
"NEXT_PUBLIC_API_URL": "@linkedin_bot_api_url",
"NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY": "@clerk_publishable_key",
"CLERK_SECRET_KEY": "@clerk_secret_key",
"NEXT_PUBLIC_REDIRECT_URI": "@next_public_redirect_uri",
"NEXT_PUBLIC_SITE_URL": "@next_public_site_url",
"NEXT_PUBLIC_PAYSTACK_PUBLIC_KEY": "@paystack_public_key",
"NEXT_PUBLIC_PAYSTACK_MONTHLY_CHECKOUT_URL": "@paystack_monthly_checkout_url",
"NEXT_PUBLIC_PAYSTACK_YEARLY_CHECKOUT_URL": "@paystack_yearly_checkout_url"
},
"installCommand": "cd web && npm ci",
"buildCommand": "cd web && npm run build",
"devCommand": "cd web && npm run dev"
}