diff --git a/.do/deploy.template.yaml b/.do/deploy.template.yaml index 25dd942..3bb13e9 100644 --- a/.do/deploy.template.yaml +++ b/.do/deploy.template.yaml @@ -5,4 +5,6 @@ spec: git: branch: main repo_clone_url: https://github.com/digitalocean/sample-spring-boot.git + instance_count: 1 + instance_size_slug: apps-s-1vcpu-1gb name: sample-springboot \ No newline at end of file diff --git a/target/classes/application.properties b/target/classes/application.properties new file mode 100644 index 0000000..a3dedad --- /dev/null +++ b/target/classes/application.properties @@ -0,0 +1,2 @@ +spring.application.name=sample-spring-boot +server.port=8080 diff --git a/target/classes/com/example/sample_spring_boot/SampleSpringBootApplication.class b/target/classes/com/example/sample_spring_boot/SampleSpringBootApplication.class new file mode 100644 index 0000000..cfb0a21 Binary files /dev/null and b/target/classes/com/example/sample_spring_boot/SampleSpringBootApplication.class differ diff --git a/target/test-classes/com/example/sample_spring_boot/SampleSpringBootApplicationTests.class b/target/test-classes/com/example/sample_spring_boot/SampleSpringBootApplicationTests.class new file mode 100644 index 0000000..3b33717 Binary files /dev/null and b/target/test-classes/com/example/sample_spring_boot/SampleSpringBootApplicationTests.class differ