Hithomelabs/HomeLabDocker#86: chore: add :portainer-automation scaffold

This commit is contained in:
hitanshu310 2026-07-05 15:35:58 +05:30
parent ee1762711d
commit 0c6944685f
3 changed files with 27 additions and 0 deletions

View 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'
}

View File

@ -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);
}
}

View File

@ -0,0 +1 @@
server.port=8081