https://github.com/escherize/cat_camp
catan boot-camp
https://github.com/escherize/cat_camp
Last synced: 9 months ago
JSON representation
catan boot-camp
- Host: GitHub
- URL: https://github.com/escherize/cat_camp
- Owner: escherize
- License: epl-1.0
- Created: 2014-12-04T07:52:53.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-15T19:24:56.000Z (over 11 years ago)
- Last Synced: 2023-08-24T19:36:54.005Z (almost 3 years ago)
- Language: JavaScript
- Size: 1.03 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
catan companion
================
This is a small static webapp diceroller. Fun!
---
It's a Clojure/ClojureScript app based on Reagent, with dynamic reloading of Clojure, ClojureScript, and CSS and a browser-connected REPL.
### Development mode
Start the server:
```
lein ring server
```
If you don't plan on using the optional development tools, you will
have to manually compile the cljs files:
```
lein cljsbuild once
```
Wait a bit, then browse to [http://localhost:3000](http://localhost:3000).
#### Reccomended development tools
Automatically push cljs changes to the browser:
```
$ lein repl
(start-figwheel)
```
Start the browser REPL:
```
$ lein repl
(browser-repl)
```
### Building for release
```
lein cljsbuild clean
lein ring uberjar
```