The Ember web client for Travis CI
Go to file
Piotr Sarnacki 2e16337e68 Revert 2ead1ff
Without filters those collections will not be updated when clicking on
show more button on builds list.
2012-10-02 21:46:34 +02:00
assets Revert 2ead1ff 2012-10-02 21:46:34 +02:00
config add a unicorn.rb 2012-10-01 12:53:53 +02:00
lib generate a real version hash 2012-10-01 13:11:26 +02:00
public Revert 2ead1ff 2012-10-02 21:46:34 +02:00
spec rework asset compilation 2012-10-01 12:36:06 +02:00
.gitignore add seeds gitignore config/travis.yml 2012-07-21 20:03:29 +02:00
AssetFile generate a real version hash 2012-10-01 13:11:26 +02:00
config.ru split up config.ru 2012-09-30 17:30:57 +02:00
dev.env make config.ru more flexible 2012-09-11 18:17:07 +02:00
Gemfile move assets stuff to development group 2012-10-01 12:48:41 +02:00
Gemfile.lock move assets stuff to development group 2012-10-01 12:48:41 +02:00
Guardfile try using minispade 2012-06-22 12:14:00 +02:00
Guardfile.phantom add a guardfile for running specs 2012-07-05 00:47:05 +02:00
NOTES.txt Remove getPath/setPath from NOTES, it's already fixed 2012-08-12 13:42:43 +02:00
Procfile no longer hardcode RUN_API 2012-09-22 17:05:03 +02:00
Rakefile work on profile view 2012-09-10 00:52:42 +02:00
README.md make config.ru more flexible 2012-09-11 18:17:07 +02:00
run_jasmine.coffee try using jasmine for specs 2012-06-25 23:58:27 +02:00
run_mocha.js try using jasmine for specs 2012-06-25 23:58:27 +02:00
seeds.sql add seeds gitignore config/travis.yml 2012-07-21 20:03:29 +02:00
travis-ember.gemspec add a gemspec 2012-09-08 17:01:15 +02:00
unicorn.rb deploy to heroku 2012-06-27 17:05:16 +02:00

Goals

See https://gist.github.com/e4728d00bfd1d6559f4a

Running the app

This is a static html/js app so you shouldn't need to install anything.

git clone git://github.com/svenfuchs/travis-ember.git
cd travis-ember
open public/index.html

Running locally with a local API server:

bundle exec rackup

Running against existing API endpoint:

API_ENDPOINT="https://api.travis-ci.org/" RUN_API=0 bundle exec rackup

Run locally, one on ci.dev and one on api.dev:

. dev.env
bundle exec rackup

Compiling assets manually

bundle install
bundle exec rakep

Compiling assets on change

bundle install
bundle exec guard