-
Notifications
You must be signed in to change notification settings - Fork 43
/
cli-templates.json
58 lines (58 loc) · 1.5 KB
/
cli-templates.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
55
56
57
58
// This file provides the list of templates presented to the user
// when running `encore app create`.
[
{
"title": "Hello World",
"desc": "A simple REST API",
"template": "hello-world",
"lang": "go"
},
{
"title": "Hello World",
"desc": "A simple REST API",
"template": "ts/hello-world",
"lang": "ts"
},
{
"title": "Uptime Monitor",
"desc": "Microservices, SQL Databases, Pub/Sub, Cron Jobs",
"template": "uptime",
"lang": "go"
},
{
"title": "Uptime Monitor",
"desc": "Microservices, SQL Databases, Pub/Sub, Cron Jobs",
"template": "ts/uptime",
"lang": "ts"
},
{
"title": "GraphQL",
"desc": "GraphQL API, Microservices, SQL Database",
"template": "graphql",
"lang": "go"
},
{
"title": "URL Shortener",
"desc": "REST API, SQL Database",
"template": "url-shortener",
"lang": "go"
},
{
"title": "URL Shortener",
"desc": "REST API, SQL Database",
"template": "ts/url-shortener",
"lang": "ts"
},
{
"title": "Empty app",
"desc": "Start from scratch (experienced users only)",
"template": "",
"lang": "go"
},
{
"title": "Empty app",
"desc": "Start from scratch (experienced users only)",
"template": "ts/empty",
"lang": "ts"
}
]