This repository has been archived by the owner on Sep 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
54 lines (54 loc) · 2.24 KB
/
app.json
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
{
"handlers": [
{ "name":"query","type":"./querystring-handler" },
{ "name":"auth","type":"./auth-handler" },
{ "name":"basic-auth","type":"./basic-auth-handler" },
{ "name":"static","type":"./static-handler" },
{ "name":"mvc","type":"./view-handler" },
{ "name":"multipart","type":"./multipart-handler" },
{ "name":"json","type":"./json-handler" },
{ "name":"post","type":"./post-handler" },
{ "name":"route","type":"./route-params-handler" },
{ "name":"directive","type":"./directive-handler" }
],
"engines": [
{ "name": "EJS View Engine", "extension": "ejs", "type": "./ejs-engine" }
],
"controllers": {
"base": "./http-data-controller.js"
},
"settings": {
"crypto": {
"algorithm": "aes256",
"key": "fb46912ef430b0faf0cab6c436e70670098f6bcd4621d373ab454e832628c4f6"
}
},
"adapterTypes": [
],
"adapters": [
],
"mimes": [
{ "extension": ".css", "type": "text/css" },
{ "extension": ".js", "type": "application/javascript" },
{ "extension": ".json", "type": "application/json", "encoding": "utf-8" },
{ "extension": ".xml", "type": "text/xml" },
{ "extension": ".rdf", "type": "text/xml" },
{ "extension": ".xsd", "type": "text/xml" },
{ "extension": ".less", "type": "text/css" },
{ "extension": ".png", "type": "image/png" },
{ "extension": ".ico", "type": "image/x-icon"},
{ "extension": ".gif", "type": "image/gif"},
{ "extension": ".bmp", "type": "image/bmp"},
{ "extension": ".jpg", "type": "image/jpeg" },
{ "extension": ".jpeg", "type": "image/jpeg"},
{ "extension": ".html", "type": "text/html" },
{ "extension": ".htm", "type": "text/html" },
{ "extension": ".pdf", "type": "application/pdf" },
{ "extension": ".txt", "type": "text/plain"},
{ "extension": ".svg", "type": "image/svg+xml"},
{ "extension": ".woff", "type": "application/x-font-woff"},
{ "extension": ".ttf", "type": "application/octet-stream" },
{ "extension": ".map", "type": "application/json" },
{ "extension": ".csv","type": "application/csv" }
]
}