This tiny application is meant to recreate Tic Tac Toe from react demo using re-frame
All the code is in one namespace: /src/simple/core.cljs
.
Steps:
- Check out this repo
- Get a command line
cd
to the root of this sub project (where this README exists)- run "
lein do clean, figwheel
" to compile the app and start up figwheel hot-reloading, - open
http://localhost:3449/example.html
to see the app
While step 4 is running, any changes you make to the ClojureScript
source files (in src
) will be re-compiled and reflected in the running
page immediately.
Run "lein do clean, with-profile prod compile
" to compile an optimised
version, and then open resources/public/example.html
in a browser.