-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnow.json
More file actions
28 lines (28 loc) · 750 Bytes
/
now.json
File metadata and controls
28 lines (28 loc) · 750 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
{
"name": "troud",
"version": 2,
"builds":[
{
"src": "index.js",
"use": "@now/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/index.js"
}
],
"env": {
"DB_PASSWORD":"@trode-db-password",
"DB_USER":"@trode-db-user",
"DB_NAME":"@trode-db-name",
"DB_HOST":"@trode-db-host",
"AUTH_ADMIN_USERNAME":"@trode-auth-admin-username",
"AUTH_ADMIN_PASSWORD":"@trode-auth-admin-password",
"AUTH_ADMIN_EMAIL":"@trode-auth-admin-email",
"AUTH_JWT_SECRET":"@trode-auth-jwt-secret",
"SECRET_ACCESS_KEY":"@trode-secret-access-key",
"ACCESS_KEY_ID":"@trode-access-key-id"
}
}