https://github.com/geyang/episodeyang.github.io-old
Ge Yang's portfolio
https://github.com/geyang/episodeyang.github.io-old
Last synced: 4 months ago
JSON representation
Ge Yang's portfolio
- Host: GitHub
- URL: https://github.com/geyang/episodeyang.github.io-old
- Owner: geyang
- Created: 2016-02-10T06:09:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-19T18:44:02.000Z (over 7 years ago)
- Last Synced: 2025-01-10T12:58:31.693Z (5 months ago)
- Language: CSS
- Homepage: http://www.episodeyang.com
- Size: 26 MB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# how to develop
## 1. install gems and browserSyncrun:
```shell
bundle install
npm install
npm install -g browser-sync
```## 2. To kick start the development:
run:
```shell
npm start # this kick starts the jekyll server
npm run watch # this kick starts the browserSync proxy server, and watches the `_site` folder for updated output files.
```## 3. To test for github page production mode
run
```shell
jekyll build --safe
```### Notes on performance:
With the `node_module` and other library folders excluded, the jekyll watch should be very speedy.