Go to file
Justin Wayne f75833c488 correcting typo
Double ' removed.
2014-06-12 10:29:35 -04:00
static Update versions 2014-06-11 08:30:09 +01:00
templates correcting typo 2014-06-12 10:29:35 -04:00
test Add provided scope to war 2014-06-04 15:31:11 +01:00
.cfignore Update for 0.5.0.M1 2013-08-04 13:50:06 +01:00
.gitignore add repository/ to .gitignore 2014-02-25 21:27:15 +01:00
app.groovy Refactor templfile clean up 2014-06-05 13:26:32 +01:00
application.yml Update versions 2014-06-11 08:30:09 +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 Cleanup for spring.io, update docs 2014-04-11 05:19:02 +01: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 need to 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 Windows users we recommend cygwin), or you can download the zip file and unpack it yourself.

Running the app locally

Use the spring command:

$ spring run app.groovy

Deploying to Cloud Foundry

If you are on a Mac and using homebrew, install the Cloud Foundry CLI:

$ brew install cloudfoundry-cli

Alternatively, download a suitable binary for your platform from Pivotal Web Services.

To help avoid a timeout on startup you should upload all the dependencies. You can get those locally by running spring grab:

$ spring grab app.groovy

this will create a local directory repository/ with all the jar dependencies. Then when you cf push they will be uploaded and used.

An example Cloud Foundry manifest.yml file is provided. You should ensure that the application name and URL (name and host values) are suitable for your environment before running cf push.