add a readme
This commit is contained in:
parent
89ffbea515
commit
aea4375860
16
README.md
16
README.md
|
@ -2,4 +2,20 @@
|
|||
|
||||
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
|
||||
|
||||
### Compiling assets manually
|
||||
|
||||
bundle install
|
||||
bundle exec rakep
|
||||
|
||||
### Compiling assets on change
|
||||
|
||||
bundle install
|
||||
bundle exec guard
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
find: (store, type, id) ->
|
||||
url = '/' + type.buildURL(id)
|
||||
console.log "find: #{url} (#{id})"
|
||||
console.log "find: #{url}"
|
||||
|
||||
@ajax url, 'GET',
|
||||
success: (json) ->
|
||||
|
@ -26,7 +26,7 @@
|
|||
|
||||
findMany: (store, type, ids) ->
|
||||
url = '/' + type.buildURL()
|
||||
console.log "findMany: #{url} (#{ids})"
|
||||
console.log "findMany: #{url}"
|
||||
|
||||
@ajax url, 'GET',
|
||||
data:
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user