-
Notifications
You must be signed in to change notification settings - Fork 6
/
README
36 lines (26 loc) · 937 Bytes
/
README
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
Roost
where owls go to sleep
Roost is an experimental new web-based zephyr client with proper
authentication. This is the official web-based frontend. The backend lives in
the companion roost.git repository. If you only wish to hack on the frontend,
only this repository is needed. By default, it will point against the official
backend deployment.
https://github.com/davidben/roost
This client is intended to support recent versions of modern browsers. Most
notably, it does not intend to support IE8 and earlier.
Getting started:
npm install -g bower grunt-cli
npm install
bower install
Running dev server:
grunt server
Building:
grunt
# output will go into dist directory
Running server on built files:
grunt server:dist
Running unit tests:
grunt test
Change default config by passing command-line arguments to grunt:
# Point to a different roost backend.
grunt --server=http://localhost:8080 server