-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.oak
33 lines (32 loc) · 866 Bytes
/
config.oak
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
Templates := {
cli: {
description: 'Command-line app'
params: [
['name', string, 'Name of the CLI']
['slug', string, 'Slug for the project, lowercase & no spaces']
]
}
html: {
description: 'Static site'
params: [
['name', string, 'Name of the project']
['slug', string, 'Slug for the project, lowercase & no spaces']
]
}
web: {
description: 'Full-stack Oak web application'
params: [
['name', string, 'Name of the project']
['slug', string, 'Slug for the project, lowercase & no spaces']
['port', int, 'The TCP localhost port on which this web app runs']
]
}
pyweb: {
description: 'Full-stack Flask web application'
params: [
['name', string, 'Name of the project']
['slug', string, 'Slug for the project, lowercase & no spaces']
['port', int, 'The TCP localhost port on which this web app runs']
]
}
}