base of backend
All checks were successful
deploy to production / deploy-frontend (push) Successful in 24s
Build and test FrontEnd / Build (push) Successful in 22s
Build and test FrontEnd / Test (push) Successful in 22s

Co-authored-by: Debucquoy <debucqquoy.anthony@gmail.com>
Reviewed-on: #29
Co-authored-by: Anthony Debucquoy <debucquoy.anthony@gmail.com>
Co-committed-by: Anthony Debucquoy <debucquoy.anthony@gmail.com>
This commit is contained in:
2024-02-23 12:00:36 +01:00
committed by Debucquoy Anthony
parent b9fec5e7b4
commit fb6527afd5
18 changed files with 610 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package ovh.herisson.Clyde;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ClydeApplication {
public static void main(String[] args) {
SpringApplication.run(ClydeApplication.class, args);
}
}

View File

@ -0,0 +1,18 @@
package ovh.herisson.Clyde.EndPoints;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import ovh.herisson.Clyde.Ping;
@RestController
public class PingController {
@GetMapping("/ping")
public Ping ping(){
return new Ping(1, "test");
}
}

View File

@ -0,0 +1,3 @@
package ovh.herisson.Clyde;
public record Ping(int id, String txt){};

View File

@ -0,0 +1 @@

View File

@ -0,0 +1,13 @@
package ovh.herisson.Clyde;
import org.junit.jupiter.api.Test;
// import org.springframework.boot.test.context.SpringBootTest;
// @SpringBootTest
class ClydeApplicationTests {
@Test
void contextLoads() {
}
}