From 164064cf58d32152237e78d9287ea6e84003f1e0 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Sat, 22 Jun 2024 22:07:12 +0200 Subject: [PATCH] chore: update readme --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8b1047f..6892a1e 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,26 @@ This is the repo for [ayos.blog](https://ayos.blog), which is built with [Jekyll](https://jekyllrb.com) and heavily modified styling on top of the default [Minima theme](https://github.com/jekyll/minima). -## How to Set Up the Project +## Project Setup 1. follow the [jekyll installation guide](https://jekyllrb.com/docs/installation) for your machine 2. clone project, then go to the directory: ``` -git clone git@github.com:ayoayco/blog -cd blog +$ git clone git@github.com:ayoayco/blog +$ cd blog ``` 3. install dependencies: ``` -bundle install +$ bundle install ``` 4. run dev server: ``` -bundle exec jekyll serve --livereload +$ bundle exec jekyll serve --livereload ``` 5. build project: ``` -bundle exec jekyll build +$ bundle exec jekyll build ```