Go to file
Dave Syer 2d72bdcc27 Merge pull request #3 from indyaah/master
* pull3:
  Changes for install.sh to point to correct URL and file.
  Broken Links Updated In README.md for installation instructions.
2014-02-11 15:16:24 +00:00
static Changes for install.sh to point to correct URL and file. 2014-02-11 15:16:03 +00:00
templates Add support for new starters 2014-01-28 14:37:23 +00:00
.cfignore Update for 0.5.0.M1 2013-08-04 13:50:06 +01:00
.gitignore Download starter.zip from home page 2013-07-22 14:40:50 +01:00
app.groovy Add MongoDB 2014-01-30 11:09:57 +00:00
application.properties Use custom command again while snapshotting 2013-08-27 16:47:27 +01:00
Gemfile Add Gemfile for cf push 2013-08-27 16:57:59 +01:00
logback.xml Add support for pom.xml generation as well as test in starter project 2013-11-01 14:39:56 +00:00
manifest.yml Push template updates for Boot version changes 2014-01-21 14:52:02 +00:00
README.md Broken Links Updated In README.md for installation instructions. 2014-02-11 15:15:01 +00:00

Spring Initializr

Prerequisites

You need Java (1.6 or better) and a bash-like shell.

If you are on a Mac and using homebrew, all you must do to install it is:

$ brew install spring-boot-cli

It will install /usr/local/bin/spring. You can jump right to running the app.

An alternative way to install the spring command line interface can be installed like this:

$ curl start.spring.io/install.sh | bash

After running that command you should see a spring directory:

$ ./spring/bin/spring --help

usage: spring [--help] [--version] 
   <command> [<args>]
...

You could add that bin directory to your PATH (the examples below assume you did that).

If you don't have curl or zip you can probably get them (for Windoze users we recommend cygwin), or you can download the zip file and unpack it yourself.

Running the app

Use the spring command:

$ spring run app.groovy

Deploying to Cloud Foundry

To help avoid a timeout on startup you should upload all the dependencies. You can get those locally by running the app with --local:

$ spring run --local app.groovy

this will create a local directory grapes/ with all the jar dependencies. Then when you cf push they will be uploaded and used if the app is again launched with --local.