File tree 8 files changed +147
-41322
lines changed
8 files changed +147
-41322
lines changed Original file line number Diff line number Diff line change
1
+ coderockr.com
Original file line number Diff line number Diff line change
1
+ coderockr
2
+ ====================
3
+
4
+ ## Setup
5
+ ### Requirements
6
+
7
+ Node ` "^8.2.1" ` (use nvm [ here] ( https://github.com/creationix/nvm ) )
8
+
9
+ Yarn ` "^1.3.2" ` (install [ here] ( https://yarnpkg.com ) )
10
+
11
+ ### Structure folder
12
+
13
+ ```
14
+ coderockr
15
+ ├── .babelrc
16
+ ├── .eslintignore
17
+ ├── .eslintrc
18
+ ├── .gitignore
19
+ ├── CNAME
20
+ ├── crossdomain.xml
21
+ ├── gh-pages.sh
22
+ ├── gulpfile.js
23
+ ├── humans.txt
24
+ ├── package.json
25
+ ├── README.md
26
+ ├── robots.txt
27
+ ├── webpack.config.js
28
+ ├── dist
29
+ └── src
30
+ └── assets
31
+ │ └── fonts
32
+ │ └── images
33
+ │ └── scripts
34
+ │ └── styles
35
+ └── templates
36
+ └── components
37
+ └── layouts
38
+ └── page.html
39
+ ```
40
+
41
+ ### Install dependencies
42
+
43
+ ``` bash
44
+ yarn
45
+ ```
46
+
47
+ ### Run
48
+
49
+ ``` bash
50
+ yarn start
51
+ ```
52
+
53
+ ### Build
54
+
55
+ ``` bash
56
+ ./build.sh
57
+ ```
58
+
59
+ ### Deploy to Github Pages (https://github.com/Coderockr/coderockr.github.com)
60
+ ``` bash
61
+ ./deploy.sh
62
+ ```
You can’t perform that action at this time.
0 commit comments