Nate ec1f18b32f Clojure - use lowercase collection names (#3215) 7 년 전
..
env dd87fd261b benchmark for the Macchiato ClojureScript framework (#2715) 8 년 전
src ec1f18b32f Clojure - use lowercase collection names (#3215) 7 년 전
README.md dd87fd261b benchmark for the Macchiato ClojureScript framework (#2715) 8 년 전
project.clj 38709a05b3 Add javax.xml.bind dependencies for Java 9 compat in some Clojure tests (#3118) 7 년 전

README.md

Welcome to hello

Prequisites

Node.js needs to be installed to run the application.

running in development mode

run the following command in the terminal to install NPM modules and start Figwheel:

lein build

run node in another terminal:

npm start

configuring the REPL

Once Figwheel and node are running, you can connect to the remote REPL at localhost:7000.

Type (cljs) in the REPL to connect to Figwheel ClojureScript REPL.

building the release version

lein package

Run the release version:

npm start

Running using Docker

The template comes with a Dockerfile for running the application using Docker

Once you've run lein package, you can build and run a Docker container as follows:

docker build -t hello:latest .
docker run -p 3000:3000 hello:latest