-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
101 lines (96 loc) · 2.59 KB
/
index.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
var fileGenerator = require("./fileGenerator");
var fs = require("fs");
var inquirer = require('inquirer');
// questions to ask the user //
let questions = [
{
type: "input",
message: "What is the title of your repository?",
name: "title"
},{
type: "input",
message: "Please give your logo information.",
name: "logo"
},{
type: "input",
message: "What is your GitHub user name?",
name: "userName"
},{
type: "input",
message: "Please give your GitHub profile link.",
name: "GitHub"
},{
type: "input",
message: "What is your email?",
name: "email"
},{
type: "list",
name: "license",
message: "Please select which license you would like to use.",
choices : [
"APACHE 2.O",
"BSD 3",
"GVL-GPL 3.0",
"MIT",
"None"
],
},{
type: "input",
message: "Please describe the repository.",
name: "description"
},{
type: "input",
message: "Please state if others can contribute.",
name: "contribute"
},{
type: "input",
message: "Please state any test(s) require (1/3).",
name: "test"
},{
type: "input",
message: "Please state any test(s) require(2/3).",
name: "test2"
},{
type: "input",
message: "Please state any test(s) require (3/3).",
name: "test3",
},{
type: "input",
message: "State your accomplishments.",
name: "accomplish"
},{
type: "input",
message: "Please state provide a screenshot (1 of 3).",
name: "scriptjs"
},{
type: "input",
message: "Please state provide a screenshot (2 of 3).",
name: "fileGnerator"
},{
type: "input",
message: "Please state provide a screenshot (3 of 3).",
name: "ReadMe"
},{
type: "input",
message: "Please supply two references (1/2).",
name: "ref1"
},{
type: "input",
message: "Please supply two references (2/2).",
name: "ref2"
},{
type: "input",
message: "Please state your end-goal.",
name: "endgoal"
}
];
// Function to write to my ReadMe.md file. //
inquirer.prompt(questions).then(function(response) {
console.log(response);
var content = fileGenerator(response);
console.log(content);
fs.writeFile("./ReadMe.md", content, function(err){
if (err) throw err
console.log("success");
});
} );