Pragmatach

Pragmatach - The pragmatic web framework

Home

Introductory Presentation

Documentation

Javadoc

Google Groups

View the Source on GitHub

Examples on GitHub

About Pragmatach

Pragmatach is a simple web framework aimed at providing server-side support for B2C web developers using technologies which are familiar to developers developing real-world sites.

Getting Started

Building your first Pragmatach project is easy; just use the archetype

      
mvn archetype:generate                         \
  -DarchetypeGroupId=com.khubla.pragmatach     \
  -DarchetypeArtifactId=pragmatach-archetype   \
  -DarchetypeVersion=1.39				             \
  -DgroupId=com.khubla.exampleproject          \
  -DartifactId=myexampleproject                \
  -DinteractiveMode=false                      \
  -DarchetypeRepository=http://www.pragmatach.com/repo/  

Click here to download this script

Run the new application

      
      cd myexampleproject
      mvn clean package jetty:run