aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-11-05 13:22:52 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-11-05 13:22:52 +0100
commitd2cc4bac3c640b5c9c72637131371671328bcb0a (patch)
tree8806d9ad25ea9cace5573dc4fbb92adbdd178a98
parentworkflows/jekyll: deploy on manual runs also (diff)
downloadsorting-algorithms-d2cc4bac3c640b5c9c72637131371671328bcb0a.tar.gz
sorting-algorithms-d2cc4bac3c640b5c9c72637131371671328bcb0a.zip
DEVELOPMENT: update
-rw-r--r--DEVELOPMENT.md21
1 files changed, 16 insertions, 5 deletions
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md
index 302df59..8d87c68 100644
--- a/DEVELOPMENT.md
+++ b/DEVELOPMENT.md
@@ -2,10 +2,19 @@ Workspace setup
---------------
* To reduce pain, set up [rbenv] to manage your Ruby versions.
-Install one that's known to work: `make ruby`
+Install one that's known to work:
+
+ make ruby
+
* Otherwise, make sure you have Ruby and [Bundler] set up.
-* Install dependencies: `make deps`
-* Make sure builds are working: `make build`
+
+* Install dependencies:
+
+ make deps
+
+* Make sure builds are working:
+
+ make build
[rbenv]: https://github.com/rbenv/rbenv
[Bundler]: https://bundler.io/
@@ -13,8 +22,10 @@ Install one that's known to work: `make ruby`
Development
-----------
-* Build the example website and serve it at http://localhost:4000/sorting-algorithms/:
-`make serve`
+* Build the website and serve it at http://localhost:4000/sorting-algorithms/:
+
+ make serve
+
* It will pick up changes and reload pages automatically.
Upgrading dependencies