Commit cf6d897 1 parent 24fc99d commit cf6d897 Copy full SHA for cf6d897
File tree 2 files changed +58
-58
lines changed
2 files changed +58
-58
lines changed Original file line number Diff line number Diff line change 1
- # Logs
2
- logs
3
- * .log
4
- npm-debug.log *
5
- yarn-debug.log *
6
- yarn-error.log *
7
-
8
- # Runtime data
9
- pids
10
- * .pid
11
- * .seed
12
- * .pid.lock
13
-
14
- # Directory for instrumented libs generated by jscoverage/JSCover
15
- lib-cov
16
-
17
- # Coverage directory used by tools like istanbul
18
- coverage
19
-
20
- # nyc test coverage
21
- .nyc_output
22
-
23
- # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24
- .grunt
25
-
26
- # Bower dependency directory (https://bower.io/)
27
- bower_components
28
-
29
- # node-waf configuration
30
- .lock-wscript
1
+ .DS_Store
2
+ node_modules
3
+ /dist
31
4
32
- # Compiled binary addons (https://nodejs.org/api/addons.html)
33
- build / Release
5
+ / tests / e2e / reports /
6
+ selenium-debug.log
34
7
35
- # Dependency directories
36
- node_modules /
37
- jspm_packages /
8
+ # local env files
9
+ .env.local
10
+ .env. * .local
38
11
39
- # TypeScript v1 declaration files
40
- typings /
41
-
42
- # Optional npm cache directory
43
- .npm
44
-
45
- # Optional eslint cache
46
- .eslintcache
47
-
48
- # Optional REPL history
49
- .node_repl_history
50
-
51
- # Output of 'npm pack'
52
- * .tgz
53
-
54
- # Yarn Integrity file
55
- .yarn-integrity
56
-
57
- # dotenv environment variables file
58
- .env
12
+ # Log files
13
+ npm-debug.log *
14
+ yarn-debug.log *
15
+ yarn-error.log *
59
16
60
- # next.js build output
61
- .next
17
+ # Editor directories and files
18
+ .idea
19
+ .vscode
20
+ * .suo
21
+ * .ntvs *
22
+ * .njsproj
23
+ * .sln
24
+ * .sw ?
Original file line number Diff line number Diff line change 1
1
# dochunt
2
- A simple web app for hunting down documentation relevant to the user.
2
+
3
+ ## Project setup
4
+ ```
5
+ npm install
6
+ ```
7
+
8
+ ### Compiles and hot-reloads for development
9
+ ```
10
+ npm run serve
11
+ ```
12
+
13
+ ### Compiles and minifies for production
14
+ ```
15
+ npm run build
16
+ ```
17
+
18
+ ### Run your tests
19
+ ```
20
+ npm run test
21
+ ```
22
+
23
+ ### Lints and fixes files
24
+ ```
25
+ npm run lint
26
+ ```
27
+
28
+ ### Run your end-to-end tests
29
+ ```
30
+ npm run test:e2e
31
+ ```
32
+
33
+ ### Run your unit tests
34
+ ```
35
+ npm run test:unit
36
+ ```
37
+
38
+ ### Customize configuration
39
+ See [ Configuration Reference] ( https://cli.vuejs.org/config/ ) .
You can’t perform that action at this time.
0 commit comments