Initialize Spring Boot application with HTTPS support and add Docker configuration

This commit is contained in:
liosha84
2025-07-28 13:48:47 +03:00
parent c58dd4ac5c
commit 90b2eaa036
15 changed files with 520 additions and 0 deletions
@@ -0,0 +1,13 @@
package https;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class SpringBootHttpsApplicationTests {
@Test
void contextLoads() {
}
}