Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yzhong52/yzhong52.github.io
https://yzhong52.github.io/
https://github.com/yzhong52/yzhong52.github.io
Last synced: 2 days ago
JSON representation
https://yzhong52.github.io/
- Host: GitHub
- URL: https://github.com/yzhong52/yzhong52.github.io
- Owner: yzhong52
- Created: 2022-01-03T16:45:40.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-25T23:06:16.000Z (over 1 year ago)
- Last Synced: 2023-08-05T01:02:30.051Z (over 1 year ago)
- Language: HTML
- Homepage:
- Size: 38.6 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
- [Yuchen's Personal Website](#yuchens-personal-website)
- [Development](#development)
- [rbenv](#rbenv)
- [Build and Run](#build-and-run)# Yuchen's Personal Website
Power by [jekyll](https://jekyllrb.com/) and [minimal-mistakes](https://mmistakes.github.io/minimal-mistakes/) theme.
## Development
### rbenv
See https://stackoverflow.com/a/66379795/1035008 for details.
Install `rbenv` to manage ruby environment:
```
brew update
brew install rbenv
```Install ruby version 3.0.3.
> Note: We could not install the latest version because of error:
> ```
> nokogiri-1.12.5-x86_64-darwin requires ruby version < 3.1.dev, >= 2.5, which is
> incompatible with the current version, ruby 3.1.0p0
> ``````
rbenv install -l
rbenv install 3.0.3
rbenv global 3.0.3
```Add to `.zshrc`:
```
eval "$(rbenv init -)"
```### Build and Run
Install bundle packages:
```
bundle install
```Build and run the site locally:
```
bundle exec jekyll serve
```