-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprompts.js
60 lines (60 loc) · 1.88 KB
/
prompts.js
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
59
60
module.exports = [
{
name: 'useCrud',
type: 'confirm',
message: 'Do you want to use a crud system? (with the package vuetify-resource)',
default: true,
},
{
name: 'useAuthorisation',
type: 'confirm',
message: 'Do you want to use authorisation (Login/register/invitation/password forgotten)',
default: true,
},
{
name: 'useGithubDeployments',
type: 'confirm',
message: 'Do you want to use github actions for deployments?',
default: true,
},
{
name: 'useBuildAndLintAction',
type: 'confirm',
message: 'Do you want to add a github workflow action which "build and lint" on every pull request? It is a fail-safe that you only deploy code which can build.',
default: true,
},
{
name: 'addRobotsFile',
type: 'confirm',
message: 'Do you want to disallow robots (SEO) to visit this applications (Y: robots.txt is placed in public folder, N: if you use github actions for deployment, in the test deployment a robots.txt is generated)?',
default: false,
},
{
name: 'plugins',
type: 'checkbox',
message: 'Which plugins should we install for you?',
choices: [
{
value: 'Sentry',
name: 'error logging with Sentry',
checked: false,
},
{
value: 'analytics',
name: 'Google Analytics with vue-analytics',
checked: false,
},
{
value: 'fontawesomepro',
name: 'Font Awesome Pro',
checked: false,
},
],
},
{
name: 'rootUrl',
type: 'input',
message: 'What is the root API url? (you can change this later)',
default: '//example.local/api',
},
];