-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kickoff.yml
76 lines (60 loc) · 2.03 KB
/
.kickoff.yml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# This is a configuration file for the kickoff utility
description: |
This is a project archetype for node.js based, cli applications.
New projects can be generated from this archetype by the
[kickoff](https://github.com/tombenke/kickoff) utility.
welcome: >
You are generating a JavaScript project, which is
using node.js, and running as a command-line application.
postscript: >
Next steps:
- Install the npm modules required by the newly generated application:
cd <dest-folder>
npm install
questions:
# A question object is a hash containing question related values:
-
# type: (String)
# Type of the prompt.
# Defaults: input - Possible values: input, confirm, list
type: input
# name: (String)
# The name to use when storing the answer in the answers' hash.
name: package_name
# message: (String)
# The question to print.
message: The name of the application
# default: (String|Number|Array)
# Default value(s) to use if nothing is entered.
default: anonymous
-
type: input
name: package_description
message: The short description of the application
default: Anonymous
-
type: input
name: author_full_name
message: The full name of the author of the application
default: Anonymous
-
type: input
name: author_email
message: The email address of the author
default: anonymous@some-domain.com
-
type: input
name: author_github_account
message: The github account (username) of the author
default: anonymous
converters:
mustache:
- .kickoff.sed
# - docs/about.md
# - docs/getHelp.md
# - docs/getStarted.md
# - docs/pageTemplate.html
# - index.html
# - package.json
# - src/config.js
# - README.md