Skip to content

Minimal full-stack Clojure/Script application with Rum

Notifications You must be signed in to change notification settings

alekseysotnikov/scramble

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scramble?

Minimal full stack Clojure/Script application with Rum

Source codes formatted by following a style described in the blog post Readable Clojure

Overview

Check that a portion of the characters can be rearranged to match the sample

Docker

docker build -t scramble .
docker run -p 3001:3001 scramble
open http://localhost:3001

Setup

To create a production build (uberjar) run:

lein package

To run a production build:

java -jar scramble.jar --port 8080

To get an interactive development environment run:

lein figwheel

and open your browser at localhost:3449. This will auto compile and send all changes to the browser without the need to reload. After the compilation process is complete, you will get a Browser Connected REPL. An easy way to try it is:

(js/alert "Am I connected?")

and you should see an alert in the browser window.

To clean all compiled files:

lein clean

License

Copyright © 2018 Aleksei Sotnikov

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

About

Minimal full-stack Clojure/Script application with Rum

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published