-
Notifications
You must be signed in to change notification settings - Fork 75
Development
LoeiFy edited this page Jul 26, 2017
·
11 revisions
-
Fork and install modules
$ npm install
-
Get your token
-
Copy
src/config.sample.js
tosrc/config.js
, and set the values
The files
├── LICENSE
├── README.md
├── bin
│ ├── mirror.js /* node cli */
│ └── zip.js
├── dist /* build files */
│ ├── build.4ba29b9e.js
│ ├── favicon.ico
│ └── index.html
├── package.json
├── postcss.config.js
├── release
│ └── mirror.zip
├── src
│ ├── api /* GrapgQL API request */
│ │ ├── comments.js
│ │ ├── error.js
│ │ ├── fetcher.js
│ │ ├── index.js
│ │ ├── issue.js
│ │ ├── issues.js
│ │ └── user.js
│ ├── config.js /* the config */
│ ├── config.sample.js
│ ├── favicon.ico
│ ├── index.html
│ ├── index.js /* main entry */
│ ├── observer
│ │ ├── diff.js
│ │ └── index.js
│ ├── router
│ │ ├── index.js
│ │ └── params.js
│ ├── style /* styles(postcss) */
│ │ ├── button.css
│ │ ├── comments.css
│ │ ├── error.css
│ │ ├── footer.css
│ │ ├── index.css
│ │ ├── post.css
│ │ ├── posts.css
│ │ ├── reset.css
│ │ ├── transition.css
│ │ └── user.css
│ ├── svg /* icon */
│ │ ├── back.svg
│ │ ├── email.svg
│ │ ├── github.svg
│ │ └── link.svg
│ ├── switch
│ │ ├── index.js
│ │ └── sleep.js
│ ├── template
│ │ ├── comments.js
│ │ ├── filter.js
│ │ ├── footer.js
│ │ ├── index.js
│ │ ├── issue.js
│ │ ├── issues.js
│ │ ├── time.js
│ │ ├── title.js
│ │ └── user.js
│ └── util
│ └── index.js
└── webpack.config.js
12 directories, 53 files
$ npm start
Local server: http://127.0.0.1:1234
You can change the port
in package.json
$ npm run build