-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
61 lines (61 loc) · 1.5 KB
/
app.json
File metadata and controls
61 lines (61 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "Trequila",
"description": "AI-powered trip planning API with real-time updates",
"keywords": ["go", "travel", "ai", "api"],
"website": "https://github.com/sky-walkerx/trequila",
"repository": "https://github.com/sky-walkerx/trequila",
"stack": "heroku-24",
"buildpacks": [
{
"url": "heroku/go"
}
],
"env": {
"NATS_URL": {
"description": "NATS JetStream URL (use Synadia NGS or similar)",
"required": true
},
"JWT_SECRET": {
"description": "Secret key for JWT signing (use a strong random string)",
"generator": "secret"
},
"GEMINI_API_KEY": {
"description": "Google Gemini API key for AI itinerary generation",
"required": true
},
"PEXELS_API_KEY": {
"description": "Pexels API key for destination images",
"required": true
},
"GEOAPIFY_API_KEY": {
"description": "Geoapify API key for geocoding and places",
"required": true
},
"GOOGLE_CLIENT_ID": {
"description": "Google OAuth Client ID (optional)",
"required": false
},
"GOOGLE_CLIENT_SECRET": {
"description": "Google OAuth Client Secret (optional)",
"required": false
},
"GOOGLE_REDIRECT_URL": {
"description": "Google OAuth Redirect URL",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql:essential-0"
},
{
"plan": "heroku-redis:mini"
}
],
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
}
}