A Leiningen template for projects using Luminus.
The template initializes a base Luminus application.
Luminus requires Leiningen version 2.x
The Luminus template ships out of the box with your latest Leiningen. Run the following command to create a new Luminus project which uses the default profile template:
lein new luminus <your project name>However, if you would like to attach further functionality to your template you can append profile hints for these extended features:
+cljsadds ClojureScript support to the project along with an example+h2adds db.core namespace and H2 database dependencies+postgresadds db.core namespace and add PostreSQL database dependencies+mysqladds db.core namespace and add MySQL/MariaDB database dependencies+siteregistration/authentication, uses+h2by default+dailycredcombined with+siteit uses DailyCred to authenticate+http-kitadds the fast HTTP Kit web server to the project+cucumberadds support for browser based UI testing with Cucumber and clj-webdriver+mongodbadds support for MongoDB using the Monger library
To add a profile simply pass it as an argument after your application name, e.g.:
lein new luminus myapp +cljsYou can also mix multiple profiles when creating the application, e.g.:
lein new luminus myapp +site +postgresTo build as a executable Java ARchive (JAR) standalone, run the following command:
lein ring uberjarTo run the resulting standalone executable .jar file, do as you would with any other:
user$ java -jar target/myapp-0.1.0-SNAPSHOT-standalone.jar
2012-12-15 19:17:23.471:INFO:oejs.Server:jetty-7.x.y-SNAPSHOT
2012-12-15 19:17:23.512:INFO:oejs.AbstractConnector:Started
SelectChannelConnector@0.0.0.0:3000
Server started on port [ 3000 ].
You can view the site at http://localhost:3000To build a WAR (or Web application ARchive) file run:
lein ring uberwarYou can then easily deploy the resulting WAR to Tomcat or any other Java application server.
Copyright © 2012 Yogthos
Distributed under the MIT License.