https://github.com/baymac/baymac.github.io
My personal blog in dark mode
https://github.com/baymac/baymac.github.io
Last synced: 6 months ago
JSON representation
My personal blog in dark mode
- Host: GitHub
- URL: https://github.com/baymac/baymac.github.io
- Owner: baymac
- License: mit
- Created: 2018-02-10T04:23:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-04-23T08:37:39.000Z (about 4 years ago)
- Last Synced: 2025-01-23T01:23:42.898Z (over 1 year ago)
- Language: SCSS
- Homepage: https://baymac.io
- Size: 3.34 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# baymac.github.io
## Build Locally
All steps for Mac OS Catalina
### Install Ruby:
Ruby also comes with Mac by default. You might not want to use/modify that version. If you want use it skip this step.
```
brew install ruby
```
Add brew ruby path to your shell config:
```
echo 'export PATH="/usr/local/opt/ruby/bin:$PATH"' >> ~/.zshrc
```
### Local Install bundler and Jekyll:
```
gem install --user-install bundler jekyll
```
Add gem path to shell config:
```
echo 'export PATH="$HOME/.gem/ruby/X.X.X/bin:$PATH"' >> ~/.zshrc
```
where X.X.X is your ruby version. Find it with `ruby -v`
Verify if gem path is set properly with:
```
gem env
```
### Install github pages dependencies
Go to the Root of this repo and run:
```
bundle install
```
### Serve the static files on localhost
```
bundle exec jekyll serve
```
By default server runs on port 4000. You can change it with `--port` option.
## Acknowledgement
This blog uses template by https://github.com/johno/pixyll. Some design inspirations are from https://github.com/taniarascia/taniarascia.com/.