forked from CaviraOSS/OpenMemory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
27 lines (27 loc) · 665 Bytes
/
app.json
File metadata and controls
27 lines (27 loc) · 665 Bytes
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
{
"name": "OpenMemory",
"description": "Self-hosted long-term AI memory engine (TypeScript)",
"repository": "https://github.com/CaviraOSS/OpenMemory",
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"NODE_ENV": {
"value": "production"
},
"OM_PORT": {
"value": "8080"
},
"OM_API_KEY": {
"description": "Secure API key"
},
"OPENAI_API_KEY": {
"description": "OpenAI embedding key"
}
},
"scripts": {
"postdeploy": "cd packages/openmemory-js && npm install && npm run build"
}
}