-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.json
More file actions
47 lines (47 loc) · 1.06 KB
/
Copy pathrender.json
File metadata and controls
47 lines (47 loc) · 1.06 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
{
"name": "finsight-api",
"description": "Finance Management Backend with Node.js, Express, Prisma & PostgreSQL",
"repository": "https://github.com/x0lg0n/FinSight-API",
"keywords": [
"node",
"express",
"prisma",
"postgresql",
"finance",
"rest-api"
],
"env": {
"NODE_ENV": {
"description": "Environment name",
"value": "production"
},
"DATABASE_URL": {
"description": "PostgreSQL connection string from Render PostgreSQL",
"value": ""
},
"JWT_SECRET": {
"description": "Secret key for JWT token signing (generate with: openssl rand -base64 32)",
"value": ""
},
"JWT_EXPIRY": {
"description": "JWT token expiry time (e.g., 7d, 24h, 86400)",
"value": "7d"
},
"PORT": {
"description": "Server port",
"value": "3000"
},
"LOG_LEVEL": {
"description": "Log level (error, warn, info, debug)",
"value": "info"
}
},
"build": {
"builder": "docker"
},
"deploy": {
"docker": {
"DOCKERFILE_PATH": "Dockerfile"
}
}
}