File tree Expand file tree Collapse file tree 3 files changed +25
-5
lines changed
Expand file tree Collapse file tree 3 files changed +25
-5
lines changed Original file line number Diff line number Diff line change 55.elasticbeanstalk /*
66! .elasticbeanstalk /* .cfg.yml
77! .elasticbeanstalk /* .global.yml
8+ * .zip
9+ * .sh
10+ lib
Original file line number Diff line number Diff line change 1+
2+ # Running the application on Elastic Beanstalk
3+
4+ ## Create environment
15Create a Java 8 SE environment in Elastic Beanstalk
6+ ## Permissions
27Add DynamoDB permissions to your instance profile (aws-elasticbeanstalk-ec2-role): [ IAM console] ( https://console.aws.amazon.com/iam/home#roles )
8+ ## Configure
9+ Set API endpoint in public/app/scorekeep.js
10+ ## Deploy
311Deploy the application to your environment.
12+
13+ # Local testing
14+ ## API vs Client
15+ ## Gradle
16+ ## Spring CLI
17+ ## CORS
18+
19+ # Running on separate servers
Original file line number Diff line number Diff line change @@ -28,16 +28,17 @@ targetCompatibility = 1.8
2828
2929dependencies {
3030 compile(" org.springframework.boot:spring-boot-starter-web" )
31- testCompile(' org.springframework.boot:spring-boot-starter-test' )
32- compile(' com.amazonaws:aws-java-sdk-dynamodb' )
33- testCompile group : ' junit' , name : ' junit' , version : ' 4.11'
31+ testCompile(" org.springframework.boot:spring-boot-starter-test" )
32+ compile(" com.amazonaws:aws-java-sdk-dynamodb" )
33+ testCompile(" junit:junit:4.11" )
34+ compile(" com.fasterxml.jackson.core:jackson-databind:2.8.4" )
3435}
3536
3637dependencyManagement {
3738 imports {
38- mavenBom(' com.amazonaws:aws-java-sdk-bom:1.11.25 ' )
39+ mavenBom(" com.amazonaws:aws-java-sdk-bom:1.11.39 " )
3940 }
4041}
4142task wrapper (type : Wrapper ) {
4243 gradleVersion = ' 2.3'
43- }
44+ }
You can’t perform that action at this time.
0 commit comments