All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 5m56s
31 lines
440 B
Markdown
31 lines
440 B
Markdown
# Pages
|
|
[Live Page](https://justin.morlana.space/)
|
|
|
|
[Local Dev Env](http://127.0.0.1:4000/)
|
|
|
|
|
|
# Setup locally
|
|
|
|
```bash
|
|
curl -sSL https://get.rvm.io | bash -s stable
|
|
source ~/.rvm/scripts/rvm
|
|
rvm install 3.3.5
|
|
rvm use 3.3.5 --default
|
|
```
|
|
|
|
```bash
|
|
gem install bundler jekyll webrick
|
|
npm i && npm run build
|
|
bundle install
|
|
bundle exec jekyll serve
|
|
```
|
|
|
|
# Run locally
|
|
|
|
```bash
|
|
source ~/.rvm/scripts/rvm
|
|
```
|
|
|
|
```bash
|
|
bundle exec jekyll serve
|
|
``` |