Skip to content

Instantly share code, notes, and snippets.

@jestan
Created November 7, 2011 05:46
Show Gist options
  • Save jestan/1344257 to your computer and use it in GitHub Desktop.
Save jestan/1344257 to your computer and use it in GitHub Desktop.
Lift Hacks
# Lift Run modes
"test", "staging", "production", "pilot", "profile", or blank
-Drun.mode=production
# Snippets
snippets are in the xxx.snippet package or LiftRules.addToPackages("xyz")
# Enable HTML 5
LiftRules.htmlProperties.default.set((r: Req) => new Html5Properties(r.userAgent))
# Simple Site Map
def sitemap = SiteMap(
Menu.i("Home") / "index",
Menu.i("Config") / "config")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment