UNPKG
nokit-app
Version:
latest (1.0.0)
1.0.0
this is an example app
nokit.org
nokit-app
/
config.json
23 lines
•
399 B
JSON
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"port"
:
9000
,
"handlers"
:
{
"^/"
:
"$./handlers/mvc"
}
,
"mvc"
:
{
"routes"
:
{
"/home"
:
"./home"
,
"/"
:
"./home"
,
"get /date"
:
{
"view"
:
"./date"
}
}
}
,
"filters"
:
{
"^/"
:
"../"
}
,
"proxy"
:
{
"rules"
:
{
"^/api"
:
"http://localhost:8000"
}
}
}