Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated README installation instructions #128

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
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
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,20 @@ Download the source:

git clone [email protected]:athenalabs/acorn-player.git

Build it
Initialize the Closure submodule:

git submodule update
git submodule init

Create the necessary symlinks:

ln -s Gruntfile.coffee Grunt.js
ln -s <path to compiler.jar> lib/closure/

Build it:

npm install
grunt compile
node_modules/grunt-exec/bin/grunt-exec compile

Run a server with the following command:

Expand All @@ -62,7 +72,10 @@ Run a server with the following command:

See it at [http://localhost:8000/static/player.html](http://localhost:8000/static/player.html)


Note: Node v0.10.4 gives errors when used with our version of Grunt. The
highest supported version of Node is 0.8.16. Instructions on installing older
versions of Node via ``brew`` are available
[here](http://stackoverflow.com/a/9832084).

## Usage

Expand Down