-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
84 lines (84 loc) · 1.88 KB
/
app.json
File metadata and controls
84 lines (84 loc) · 1.88 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "altus4-core",
"description": "AI-Enhanced MySQL Full-Text Search Engine",
"repository": "https://github.com/your-username/altus4",
"logo": "https://example.com/logo.png",
"keywords": ["search", "mysql", "ai", "fulltext", "api"],
"stack": "heroku-22",
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"formation": {
"web": {
"quantity": 1,
"size": "Basic"
}
},
"env": {
"NODE_ENV": {
"description": "Environment (production, development, test)",
"value": "production",
"required": true
},
"PORT": {
"description": "Port for the web server",
"value": "3000"
},
"JWT_SECRET": {
"description": "JWT secret key for authentication (minimum 32 characters)",
"generator": "secret",
"required": true
},
"DB_HOST": {
"description": "MySQL database host",
"required": true
},
"DB_PORT": {
"description": "MySQL database port",
"value": "3306"
},
"DB_USERNAME": {
"description": "MySQL database username",
"required": true
},
"DB_PASSWORD": {
"description": "MySQL database password",
"required": true
},
"DB_DATABASE": {
"description": "MySQL database name",
"required": true
},
"REDIS_HOST": {
"description": "Redis host for caching",
"required": true
},
"REDIS_PORT": {
"description": "Redis port",
"value": "6379"
},
"REDIS_PASSWORD": {
"description": "Redis password (if required)",
"required": false
},
"OPENAI_API_KEY": {
"description": "OpenAI API key for AI features",
"required": true
}
},
"addons": [
{
"plan": "cleardb:ignite",
"as": "CLEARDB"
},
{
"plan": "heroku-redis:mini",
"as": "REDIS"
}
],
"scripts": {
"postdeploy": "npm run migrate:run"
}
}