Skip to content

Commit b3a5df9

Browse files
committed
readme edit
1 parent 62394fa commit b3a5df9

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,27 @@ This Starter Kit is a port of the hyperstack [TodoMVC Tutorial Part I](https://d
2020
- **instant compilation + livereload**
2121
- via [guard-rake](https://github.com/rubyist/guard-rake), [guard-livereload](https://github.com/guard/guard-livereload), [rack-livereload](https://github.com/johnbintz/rack-livereload)
2222
### How to use
23+
#### Prerequisites
24+
Example from a fresh Ubuntu 20.04 :
25+
26+
1. Install rbenv ([see here](https://github.com/rbenv/rbenv-installer#rbenv-installer))
27+
2. install ruby 2.7.4 :
28+
```shell
29+
sudo apt-get update
30+
sudo apt install git curl libssl-dev libreadline-dev zlib1g-dev autoconf
31+
sudo apt install bison build-essential libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev
32+
rbenv install 2.7.4
33+
rbenv global 2.7.4
34+
gem install bundler:2.2.5
35+
```
36+
3. install nodejs 16.13.0 ([see here](https://github.com/nodesource/distributions/blob/master/README.md#debinstall))
37+
38+
2339
#### Installation
2440
```shell
2541
git clone https://github.com/jugcoding/hyperstack-js-starter
2642
cd ./hyperstack-js-starter
27-
bundle install
43+
bundle install --path vendor/bundle
2844
```
2945

3046
#### Development

0 commit comments

Comments
 (0)