blob: 023d46cc350491b7ff1bac01f1637c9ca5ef6074 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
Workspace setup
---------------
* To reduce pain, set up [rbenv] to manage your Ruby versions.
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
[rbenv]: https://github.com/rbenv/rbenv
[Bundler]: https://bundler.io/
Development
-----------
* Build the website and serve it at http://localhost:4000/:
make serve
* It will pick up changes and reload pages automatically.
Upgrading dependencies
----------------------
* To upgrade dependencies in Gemfile.lock & push them to the repository:
make maintenance
* Manually upgrade dependencies in Gemfile.lock:
bundle update
|