Skip to content

Commit 99e2a09

Browse files
fix deploy
1 parent 0b2fa15 commit 99e2a09

File tree

102 files changed

+1985
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+1985
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.DS_Store
22
node_modules
3-
dist
43
.sass-cache
54
npm-debug.log

dist/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
coderockr.com

dist/README.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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+
└── pages.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+
yarn build
57+
```
58+
59+
### Deploy to Github Pages (https://github.com/Coderockr/coderockr.github.com)
60+
```bash
61+
./gh-pages.sh
62+
```

dist/about.html

Lines changed: 653 additions & 0 deletions
Large diffs are not rendered by default.
38.6 KB
Binary file not shown.
29.1 KB
Binary file not shown.
38.3 KB
Binary file not shown.
28.4 KB
Binary file not shown.
40.8 KB
Binary file not shown.
30.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)