/reframe-tictactoe

Purely Functional: Re-Frame in one hour

Primary LanguageClojureMIT LicenseMIT

tic-tac-toe

A re-frame application designed to ... well, that part is up to you.

Lein template

lein new re-frame tic-tac-toe +cider

Development Mode

Start Cider from Emacs:

Put this in your Emacs config file:

(setq cider-cljs-lein-repl "(do (use 'figwheel-sidecar.repl-api) (start-figwheel!) (cljs-repl))")

Navigate to a clojurescript file and start a figwheel REPL with cider-jack-in-clojurescript or (C-c M-J)

Run application:

lein clean
lein figwheel dev

Figwheel will automatically push cljs changes to the browser.

Wait a bit, then browse to http://localhost:3449.

Production Build

To compile clojurescript to javascript:

lein clean
lein cljsbuild once min