diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2014-07-25 07:53:35 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2014-07-25 07:55:16 -0700 |
commit | dcad4bcdfb547cf4ba8aae1217fcb36691f0021e (patch) | |
tree | ea5b412f7d9192b1cf92af3c0a7d97855b258d8a | |
parent | 3c11ccc5d064c5f2b07006a6701b2d3857abf0ea (diff) |
Adding a README.
-rw-r--r-- | README.md | 25 | ||||
-rw-r--r-- | devfiles/grow-server.properties.default | 7 |
2 files changed, 32 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..1d095ad --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +Foursquare Grow Website +========================= + +This is the source for the [Foursquare GROW](http://foursquaregrow.com) Website. + +Requirements +-------------- + +* JDK 1.7 +* Ant +* Ivy +* jesterpm-build-tools + + +Usage +------- + +1. Download and bootstrap jesterpm-build-tools from http://github.com/jesterpm/jesterpm-build-tools +2. Copy devfiles/grow-server.properties.default to devfiles/grow-server.properties and insert your + AWS and F1 credentials. +3. Run `ant server` to start the website on http://localhost:8085 + +The website defaults to running in dev mode which will only modify the dev Dynamo tables. You can +also run `ant server-prod` to cause the local website to access the production site's Dyanmo +tables. diff --git a/devfiles/grow-server.properties.default b/devfiles/grow-server.properties.default new file mode 100644 index 0000000..389c514 --- /dev/null +++ b/devfiles/grow-server.properties.default @@ -0,0 +1,7 @@ +*.awsAccessKey = ACCESS_KEY +*.awsSecretKey = SECRET_KEY + +*.f1ConsumerKey = CONSUMER_KEY +*.f1ConsumerSecret = CONSUMER_SECRET +*.f1BaseUrl = fellowshiponeapi.com +*.f1ChurchCode = pfseawa |