Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marianoguerra/absolute-pitch
A web game to train score reading and pitch recognition using clojurescript/om
https://github.com/marianoguerra/absolute-pitch
Last synced: about 1 month ago
JSON representation
A web game to train score reading and pitch recognition using clojurescript/om
- Host: GitHub
- URL: https://github.com/marianoguerra/absolute-pitch
- Owner: marianoguerra
- License: epl-1.0
- Created: 2015-06-23T18:03:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-23T18:44:55.000Z (over 9 years ago)
- Last Synced: 2023-04-21T08:16:30.702Z (over 1 year ago)
- Language: Clojure
- Size: 137 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: code_of_conduct.md
Awesome Lists containing this project
README
# pitchperfect
## Development
Open a terminal and type `lein repl` to start a Clojure REPL
(interactive prompt).In the REPL, type
```clojure
(run)
(browser-repl)
```The call to `(run)` does two things, it starts the webserver at port
10555, and also the Figwheel server which takes care of live reloading
ClojureScript code and CSS. Give them some time to start.Running `(browser-repl)` starts the Weasel REPL server, and drops you
into a ClojureScript REPL. Evaluating expressions here will only work
once you've loaded the page, so the browser can connect to Weasel.When you see the line `Successfully compiled "resources/public/app.js"
in 21.36 seconds.`, you're ready to go. Browse to
`http://localhost:10555` and enjoy.**Attention: It is not longer needed to run `lein figwheel`
separately. This is now taken care of behind the scenes**## Trying it out
If all is well you now have a browser window saying 'Hello Chestnut',
and a REPL prompt that looks like `cljs.user=>`.Open `resources/public/css/style.css` and change some styling of the
H1 element. Notice how it's updated instantly in the browser.Open `src/cljs/pitchperfect/core.cljs`, and change `dom/h1` to
`dom/h2`. As soon as you save the file, your browser is updated.In the REPL, type
```
(ns pitchperfect.core)
(swap! app-state assoc :text "Interactivity FTW")
```Notice again how the browser updates.
## Deploying to Heroku
This assumes you have a
[Heroku account](https://signup.heroku.com/dc), have installed the
[Heroku toolbelt](https://toolbelt.heroku.com/), and have done a
`heroku login` before.``` sh
git init
git add -A
git commit
heroku create
git push heroku master:master
heroku open
```## Running with Foreman
Heroku uses [Foreman](http://ddollar.github.io/foreman/) to run your
app, which uses the `Procfile` in your repository to figure out which
server command to run. Heroku also compiles and runs your code with a
Leiningen "production" profile, instead of "dev". To locally simulate
what Heroku does you can do:``` sh
lein with-profile -dev,+production uberjar && foreman start
```Now your app is running at
[http://localhost:5000](http://localhost:5000) in production mode.## License
Copyright © 2014 FIXME
Distributed under the Eclipse Public License either version 1.0 or (at
your option) any later version.## Chestnut
Created with [Chestnut](http://plexus.github.io/chestnut/) 0.7.0.