A Boot template for FW/1 (Framework One).
To use the template to create a new FW/1 project:
boot -d seancorfield/boot-new new -t fw1 -n mywebapp
This will create a new FW/1 project called mywebapp. You should be able to just drop into the folder and start FW/1:
PORT=8888 boot run
or:
boot run -p 8888
You can also build a standalone JAR for that new app:
boot build
And run that JAR:
PORT=8888 java -jar target/mywebapp-0.1.0-SNAPSHOT-standalone.jar
Copyright (c) 2012-2016 Sean Corfield
Distributed under the Eclipse Public License, the same as Clojure.