Provides a skeleton for a ActiveWeb application that includes Bootstrap UI. This basic skeleton does not use a database, so there's nothing to configure. Both Bootstrap and jQuery are provided through a CDN.
You must have maven available in order to build and run the ActiveWeb application. If it's not installed you can install on a Mac using Brew $ brew install maven
The easiest way to install and run is to clone this repository, and then run maven to download, and start the server.
$ git clone https://github.com/tbeauvais/activeweb_bootstrap.git
$ cd activeweb_bootstrap
$ mvn jetty:run
After the dependencies are downloaded, and the application is built the jetty server will be started. Once the server is running you can hit it in your browser using this URL http://localhost:8080/activeweb-bootstrap/
For the next step I suggest you checkout the ActiveWeb documentation and samples.