Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
You'll need ruby and redis installed to run this. If you're on a mac, one way to go getting redis is to install [homebrew](https://brew.sh/), then run `brew install redis`. Then, for ruby, install [rvm](https://rvm.io/).
You'll need ruby and redis installed to run this. If you're on a mac, one way to go getting redis is to install [homebrew](https://brew.sh/), then run `brew install redis`.
Another way is to install [docker](https://docs.docker.com/docker-for-mac/install/),
then run `docker run --name redis -p 6379:6379 -d redis`.
Then, for ruby, install [rvm](https://rvm.io/).

Once ruby + redis are installed you can just run `redis-server` in a terminal to start redis.

To boot the ruby web server that serves our html + css:

```
gem install bundler
bundle install
bundle exec puma
```
Expand Down