forked from Hithomelabs/CFTunnels
Hithomelabs/HomeLabDocker#86: chore: add :portainer-automation scaffold
This commit is contained in:
parent
ee1762711d
commit
0c6944685f
14
portainer-automation/build.gradle
Normal file
14
portainer-automation/build.gradle
Normal file
@ -0,0 +1,14 @@
|
||||
apply plugin: 'org.springframework.boot'
|
||||
|
||||
dependencies {
|
||||
implementation project(':common')
|
||||
|
||||
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
||||
|
||||
compileOnly 'org.projectlombok:lombok'
|
||||
annotationProcessor 'org.projectlombok:lombok'
|
||||
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
|
||||
|
||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
package com.hithomelabs.portainer;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class PortainerAutomationApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(PortainerAutomationApplication.class, args);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1 @@
|
||||
server.port=8081
|
||||
Loading…
Reference in New Issue
Block a user