-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
executable file
·32 lines (32 loc) · 923 Bytes
/
Copy pathapp.json
File metadata and controls
executable file
·32 lines (32 loc) · 923 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
28
29
30
31
32
{
"name": "studykit",
"description": "StudyKit - Learning note-taking app with PDF annotation, Cornell notes, and Tiptap editor",
"repository": "https://github.com/YOUR_USERNAME/studykit",
"logo": "https://raw.githubusercontent.com/YOUR_USERNAME/studykit/main/frontend/public/favicon.svg",
"keywords": ["education", "note-taking", "pdf", "studykit"],
"env": {
"DB_PASSWORD": {
"description": "PostgreSQL database password",
"generator": "secret"
},
"JWT_SECRET": {
"description": "Secret key for JWT token signing",
"generator": "secret"
},
"AI_CREDENTIAL_ENCRYPTION_KEY": {
"description": "32-byte base64 or 64-character hex key used to encrypt user AI API credentials",
"generator": "secret"
}
},
"addons": [
{
"plan": "postgresql:16",
"as": "DATABASE"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}