-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
87 lines (77 loc) · 2.39 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
// TODO: Include packages needed for this application
const generateMarkdown = require('./utils/generateMarkdown')
const fs = require('fs');
const inquirer = require('inquirer');
// TODO: Create an array of questions for user input
const questions = [
{
type: 'input',
message: 'What is your GitHub username? (make sure this is correct because this will generate a link to your account)',
name: 'gitAccount'
},
{
type: 'input',
message: 'What is the title of your Project?',
name: 'title'
},
{
type: 'input',
message: 'Give a discription of your project',
name: 'description'
},
{
type: 'input',
message: 'What are the installation instructions for your app',
name: 'installation'
},
{
type: 'input',
message: 'What is the usage of your app?',
name: 'usage'
},
{
type: 'input',
message: 'How can people contribute to your app?',
name: 'contribute'
},
{
type: 'input',
message: 'What tests did you run on your app?',
name: 'tests'
},
{
type: 'input',
message: 'What is your Email address?',
name: 'email'
},
{
type: 'input',
message: 'Add a link to the video of your app here',
name: 'video'
},
{
type: 'list',
message: 'Does your repository have a license?, if so which one?',
choices: ['None', 'Apache License 2.0', 'GNU General Public License v3.0', 'MIT License', 'BSD 2-Clause "Simplified" license', 'BSD 3-Clause "New" or "Revised" license', 'Boost Software License 1.0'],
name: 'license'
}
]
// TODO: Create a function to write README file
function writeToFile(fileName, data){
fs.writeFile(fileName, data, function(err) {
if (err) {
return console.log(err);
}
console.log('The file was saved!')
})
}
// TODO: Create a function to initialize app
function init() {
inquirer.prompt(questions)
.then (answers => {
const md = generateMarkdown(answers)
writeToFile("README.md", md)
})
}
// Function call to initialize app
init();