-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.json
More file actions
92 lines (92 loc) · 2.53 KB
/
render.json
File metadata and controls
92 lines (92 loc) · 2.53 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
85
86
87
88
89
90
91
92
{
"name": "AegisExpress Logistics API",
"description": "Enterprise logistics management API with real-time tracking, email notifications, and PDF generation",
"website": "https://github.com/RabbitDaCoder/ExpressLogistics",
"repository": "https://github.com/RabbitDaCoder/ExpressLogistics",
"logo": "https://raw.githubusercontent.com/RabbitDaCoder/ExpressLogistics/main/client/public/react.svg",
"success_url": "/api/health",
"services": [
{
"type": "web",
"name": "aegis-express-api",
"env": "node",
"plan": "free",
"buildCommand": "cd api && npm install",
"startCommand": "cd api && npm start",
"healthCheckPath": "/api/health",
"envVars": [
{
"key": "NODE_ENV",
"value": "production"
},
{
"key": "PORT",
"value": "10000"
},
{
"key": "MONGODB_URI",
"description": "MongoDB connection string",
"required": true
},
{
"key": "JWT_SECRET",
"description": "JWT secret key for authentication",
"generateValue": true,
"required": true
},
{
"key": "JWT_EXPIRES",
"value": "7d"
},
{
"key": "REDIS_URL",
"description": "Redis connection string for caching",
"required": true
},
{
"key": "EMAIL_USER",
"description": "SMTP email username",
"required": true
},
{
"key": "EMAIL_PASS",
"description": "SMTP email password",
"required": true
},
{
"key": "SMTP_HOST",
"value": "smtp.gmail.com"
},
{
"key": "SMTP_PORT",
"value": "465"
},
{
"key": "FROM_EMAIL",
"description": "From email address for notifications",
"required": true
},
{
"key": "CLOUDINARY_CLOUD_NAME",
"description": "Cloudinary cloud name for file storage",
"required": true
},
{
"key": "CLOUDINARY_API_KEY",
"description": "Cloudinary API key",
"required": true
},
{
"key": "CLOUDINARY_API_SECRET",
"description": "Cloudinary API secret",
"required": true
},
{
"key": "FRONTEND_URL",
"description": "Frontend application URL (update after client deployment)",
"value": "https://localhost:5173"
}
]
}
]
}