backend-api #6
@ -12,8 +12,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
distribution: 'temurin' # See 'Supported distributions' for available options
|
distribution: 'temurin' # See 'Supported distributions' for available options
|
||||||
java-version: '21'
|
java-version: '21'
|
||||||
|
|
||||||
- uses: axel-op/googlejavaformat-action@v3
|
- uses: axel-op/googlejavaformat-action@v3
|
||||||
with:
|
with:
|
||||||
args: "--set-exit-if-changed --skip-sorting-imports --aosp"
|
args: "--set-exit-if-changed --skip-sorting-imports --aosp -n"
|
||||||
- name: Print diffs
|
|
||||||
run: git --no-pager diff --exit-code
|
|
34
Makefile
34
Makefile
@ -1,13 +1,16 @@
|
|||||||
help:
|
help:
|
||||||
@echo "make [clean dev-front prod dev-back]"
|
@echo "make [clean dev-front prod dev-back dev]"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@cp config/frontdev.env front/MyINPulse-front/.env
|
||||||
|
@cp config/frontdev.env .env
|
||||||
|
@cp config/frontdev.env MyINPulse-back/.env
|
||||||
@cp config/prod.docker-compose.yaml docker-compose.yaml
|
@cp config/prod.docker-compose.yaml docker-compose.yaml
|
||||||
@docker compose down
|
@docker compose down
|
||||||
@rm -f docker-compose.yaml
|
@rm -f docker-compose.yaml
|
||||||
@rm -f .env
|
@rm -f .env
|
||||||
@rm -f front/MyINPulse-front/.env
|
@rm -f front/MyINPulse-front/.env
|
||||||
|
@rm -f MyINPulse-back/.env
|
||||||
|
|
||||||
# Install npm packages
|
# Install npm packages
|
||||||
front/MyINPulse-front/.installed:
|
front/MyINPulse-front/.installed:
|
||||||
@ -18,24 +21,37 @@ vite: ./front/MyINPulse-front/.installed
|
|||||||
|
|
||||||
|
|
||||||
dev-front: clean vite
|
dev-front: clean vite
|
||||||
@cp config/frontdev.front.env front/MyINPulse-front/.env
|
@cp config/frontdev.env front/MyINPulse-front/.env
|
||||||
@cp config/frontdev.main.env .env
|
@cp config/frontdev.env .env
|
||||||
|
@cp config/frontdev.env MyINPulse-back/.env
|
||||||
@cp config/frontdev.docker-compose.yaml docker-compose.yaml
|
@cp config/frontdev.docker-compose.yaml docker-compose.yaml
|
||||||
@docker compose up -d --build
|
@docker compose up -d --build
|
||||||
@cd ./front/MyINPulse-front/ && npm run dev
|
@cd ./front/MyINPulse-front/ && npm run dev
|
||||||
|
|
||||||
prod: clean
|
prod: clean
|
||||||
@cp config/prod.front.env front/MyINPulse-front/.env
|
@cp config/prod.env front/MyINPulse-front/.env
|
||||||
@cp config/prod.main.env .env
|
@cp config/prod.env .env
|
||||||
|
@cp config/prod.env .env
|
||||||
@cp config/prod.docker-compose.yaml docker-compose.yaml
|
@cp config/prod.docker-compose.yaml docker-compose.yaml
|
||||||
@docker compose up -d --build
|
@docker compose up -d --build
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
dev-back:
|
dev-back:
|
||||||
@cp config/backdev.front.env front/MyINPulse-front/.env
|
@cp config/backdev.env front/MyINPulse-front/.env
|
||||||
@cp config/backdev.main.env .env
|
@cp config/backdev.env .env
|
||||||
|
@cp config/backdev.env MyINPulse-back/.env
|
||||||
@cp config/backdev.docker-compose.yaml docker-compose.yaml
|
@cp config/backdev.docker-compose.yaml docker-compose.yaml
|
||||||
@docker compose up -d --build
|
@docker compose up -d --build
|
||||||
@echo "cd MyINPulse-back"
|
@echo "cd MyINPulse-back" && echo 'export $$(cat .env | xargs)'
|
||||||
@echo "./gradlew bootRun --args='--server.port=8081'"
|
@echo "./gradlew bootRun --args='--server.port=8081'"
|
||||||
|
|
||||||
|
dev: clean vite
|
||||||
|
@cp config/dev.env front/MyINPulse-front/.env
|
||||||
|
@cp config/dev.env .env
|
||||||
|
@cp config/dev.env MyINPulse-back/.env
|
||||||
|
@cp config/dev.docker-compose.yaml docker-compose.yaml
|
||||||
|
@docker compose up -d --build
|
||||||
|
@echo "cd MyINPulse-back" && echo 'export $$(cat .env | xargs)'
|
||||||
|
@echo "./gradlew bootRun --args='--server.port=8081'"
|
||||||
|
@cd ./front/MyINPulse-front/ && npm run dev &
|
||||||
|
@ -21,8 +21,8 @@ dependencies {
|
|||||||
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
|
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
|
||||||
implementation 'org.springframework.boot:spring-boot-starter-web'
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||||||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||||||
implementation('org.springframework.boot:spring-boot-starter-validation')
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
||||||
implementation('org.springframework.boot:spring-boot-starter-data-rest')
|
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
|
||||||
implementation 'org.postgresql:postgresql'
|
implementation 'org.postgresql:postgresql'
|
||||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||||
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
||||||
|
@ -1,43 +1,24 @@
|
|||||||
package enseirb.myinpulse.api;
|
package enseirb.myinpulse.api;
|
||||||
|
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
import org.springframework.security.core.context.SecurityContextHolder;
|
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestMethod;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
import org.springframework.web.bind.annotation.CrossOrigin;
|
|
||||||
|
|
||||||
import java.security.Principal;
|
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
@RestController
|
@RestController
|
||||||
public class GetUserInfo {
|
public class GetUserInfo {
|
||||||
// TODO: understand how to get data
|
@GetMapping("/unauth/random")
|
||||||
@GetMapping("/getUserInfo")
|
|
||||||
public Object user(Principal principal) {
|
|
||||||
System.out.println("GetUserInfo + " + principal);
|
|
||||||
System.out.println(SecurityContextHolder.getContext().getAuthentication());
|
|
||||||
return SecurityContextHolder.getContext().getAuthentication().getPrincipal();
|
|
||||||
}
|
|
||||||
|
|
||||||
@CrossOrigin(methods = {RequestMethod.GET, RequestMethod.OPTIONS})
|
|
||||||
@GetMapping("/random")
|
|
||||||
public boolean rand() {
|
public boolean rand() {
|
||||||
System.err.println("HELLO");
|
|
||||||
return Math.random() > 0.5;
|
return Math.random() > 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
@CrossOrigin(methods = {RequestMethod.GET, RequestMethod.OPTIONS})
|
@GetMapping("/admin/random")
|
||||||
@GetMapping("/random2")
|
|
||||||
public boolean rand2() {
|
public boolean rand2() {
|
||||||
System.err.println("HELLO2");
|
|
||||||
return Math.random() > 0.5;
|
return Math.random() > 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
@CrossOrigin(methods = {RequestMethod.GET, RequestMethod.OPTIONS})
|
@GetMapping("/entrepreneur/random")
|
||||||
@GetMapping("/random3")
|
|
||||||
public boolean rand3() {
|
public boolean rand3() {
|
||||||
System.err.println("HELLO");
|
|
||||||
return Math.random() > 0.5;
|
return Math.random() > 0.5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
package enseirb.myinpulse.config;
|
package enseirb.myinpulse.config;
|
||||||
|
|
||||||
|
import static org.springframework.security.authorization.AuthorityAuthorizationManager.hasRole;
|
||||||
|
|
||||||
import enseirb.myinpulse.security.KeycloakJwtRolesConverter;
|
import enseirb.myinpulse.security.KeycloakJwtRolesConverter;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
||||||
@ -12,39 +16,53 @@ import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
|
|||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import static org.springframework.security.authorization.AuthorityAuthorizationManager.hasRole;
|
|
||||||
|
|
||||||
@Configuration
|
@Configuration
|
||||||
public class WebSecurityCustomConfiguration {
|
public class WebSecurityCustomConfiguration {
|
||||||
// CORS configuration
|
// CORS configuration
|
||||||
// TODO: make sure to only accept our own domains
|
|
||||||
|
@Value("${VITE_APP_URL}")
|
||||||
|
private String frontendUrl;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Configure the CORS (Cross Origin Ressource Sharing -- a security feature) configuration. The
|
||||||
|
* only allowed website is the frontend, defined in the .env file.
|
||||||
|
*
|
||||||
|
* @return the CORS configuration used by the backend
|
||||||
|
*/
|
||||||
@Bean
|
@Bean
|
||||||
public CorsConfigurationSource corsConfigurationSource() {
|
public CorsConfigurationSource corsConfigurationSource() {
|
||||||
CorsConfiguration configuration = new CorsConfiguration();
|
CorsConfiguration configuration = new CorsConfiguration();
|
||||||
configuration.setAllowedOrigins(List.of("*"));
|
configuration.setAllowedOrigins(List.of(frontendUrl));
|
||||||
configuration.setAllowedMethods(Arrays.asList("GET", "OPTIONS"));
|
configuration.setAllowedMethods(Arrays.asList("GET", "OPTIONS"));
|
||||||
configuration.setAllowedHeaders(
|
configuration.setAllowedHeaders(
|
||||||
Arrays.asList(
|
Arrays.asList("authorization", "content-type", "x-auth-token"));
|
||||||
"authorization",
|
|
||||||
"content-type",
|
|
||||||
"x-auth-token")); // Do not remove, this fixes the CORS errors when
|
|
||||||
// unauthenticated
|
|
||||||
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
|
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
|
||||||
source.registerCorsConfiguration("/**", configuration);
|
source.registerCorsConfiguration("/**", configuration);
|
||||||
|
|
||||||
return source;
|
return source;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Configure the authorisation required for each path.
|
||||||
|
*
|
||||||
|
* <p>admin endpoints are under /admin/* and entrepreneur are under /entrepreneur/*
|
||||||
|
*
|
||||||
|
* <p>If endpoints dont require authentication, they are under /unauth/
|
||||||
|
*
|
||||||
|
* @param http automatically filled in by spring.
|
||||||
|
* @return a securityfilterchain, automatically used by spring.
|
||||||
|
* @throws Exception TODO: figure out when the exception are raised
|
||||||
|
*/
|
||||||
@Bean
|
@Bean
|
||||||
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
|
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
|
||||||
http.authorizeHttpRequests(
|
http.authorizeHttpRequests(
|
||||||
authorize ->
|
authorize ->
|
||||||
authorize
|
authorize
|
||||||
.requestMatchers("/random2")
|
.requestMatchers("/entrepreneur/**")
|
||||||
.access(hasRole("REALM_MyINPulse-entrepreneur"))
|
.access(hasRole("REALM_MyINPulse-entrepreneur"))
|
||||||
.requestMatchers("/random")
|
.requestMatchers("/admin/**")
|
||||||
.access(hasRole("REALM_MyINPulse-admin"))
|
.access(hasRole("REALM_MyINPulse-admin"))
|
||||||
.requestMatchers("/random3")
|
.requestMatchers("/unauth/**")
|
||||||
.permitAll()
|
.permitAll()
|
||||||
.anyRequest()
|
.anyRequest()
|
||||||
.authenticated())
|
.authenticated())
|
||||||
|
@ -2,12 +2,14 @@ package enseirb.myinpulse.postgres_db.controller;
|
|||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.Administrateurs;
|
import enseirb.myinpulse.postgres_db.model.Administrateurs;
|
||||||
import enseirb.myinpulse.postgres_db.repository.AdministrateursRepository;
|
import enseirb.myinpulse.postgres_db.repository.AdministrateursRepository;
|
||||||
import java.util.Optional;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.server.ResponseStatusException;
|
import org.springframework.web.server.ResponseStatusException;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
public class AdministrateursController {
|
public class AdministrateursController {
|
||||||
|
|
||||||
|
@ -2,12 +2,14 @@ package enseirb.myinpulse.postgres_db.controller;
|
|||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.ComptesRendus;
|
import enseirb.myinpulse.postgres_db.model.ComptesRendus;
|
||||||
import enseirb.myinpulse.postgres_db.repository.ComptesRendusRepository;
|
import enseirb.myinpulse.postgres_db.repository.ComptesRendusRepository;
|
||||||
import java.util.Optional;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.server.ResponseStatusException;
|
import org.springframework.web.server.ResponseStatusException;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
public class ComptesRendusController {
|
public class ComptesRendusController {
|
||||||
|
|
||||||
|
@ -2,12 +2,14 @@ package enseirb.myinpulse.postgres_db.controller;
|
|||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.Entrepreneurs;
|
import enseirb.myinpulse.postgres_db.model.Entrepreneurs;
|
||||||
import enseirb.myinpulse.postgres_db.repository.EntrepreneursRepository;
|
import enseirb.myinpulse.postgres_db.repository.EntrepreneursRepository;
|
||||||
import java.util.Optional;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.server.ResponseStatusException;
|
import org.springframework.web.server.ResponseStatusException;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
public class EntrepreneursController {
|
public class EntrepreneursController {
|
||||||
|
|
||||||
|
@ -2,13 +2,15 @@ package enseirb.myinpulse.postgres_db.controller;
|
|||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.Projets;
|
import enseirb.myinpulse.postgres_db.model.Projets;
|
||||||
import enseirb.myinpulse.postgres_db.repository.ProjetsRepository;
|
import enseirb.myinpulse.postgres_db.repository.ProjetsRepository;
|
||||||
import java.time.LocalDate;
|
|
||||||
import java.util.Optional;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.server.ResponseStatusException;
|
import org.springframework.web.server.ResponseStatusException;
|
||||||
|
|
||||||
|
import java.time.LocalDate;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
public class ProjetsController {
|
public class ProjetsController {
|
||||||
|
|
||||||
|
@ -2,13 +2,15 @@ package enseirb.myinpulse.postgres_db.controller;
|
|||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.Sections;
|
import enseirb.myinpulse.postgres_db.model.Sections;
|
||||||
import enseirb.myinpulse.postgres_db.repository.SectionsRepository;
|
import enseirb.myinpulse.postgres_db.repository.SectionsRepository;
|
||||||
import java.time.LocalDateTime;
|
|
||||||
import java.util.Optional;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.server.ResponseStatusException;
|
import org.springframework.web.server.ResponseStatusException;
|
||||||
|
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
public class SectionsController {
|
public class SectionsController {
|
||||||
|
|
||||||
|
@ -2,12 +2,14 @@ package enseirb.myinpulse.postgres_db.controller;
|
|||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.Utilisateurs;
|
import enseirb.myinpulse.postgres_db.model.Utilisateurs;
|
||||||
import enseirb.myinpulse.postgres_db.repository.UtilisateursRepository;
|
import enseirb.myinpulse.postgres_db.repository.UtilisateursRepository;
|
||||||
import java.util.Optional;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.server.ResponseStatusException;
|
import org.springframework.web.server.ResponseStatusException;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
public class UtilisateursController {
|
public class UtilisateursController {
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@ package enseirb.myinpulse.postgres_db.model;
|
|||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
import jakarta.persistence.PrimaryKeyJoinColumn;
|
import jakarta.persistence.PrimaryKeyJoinColumn;
|
||||||
import jakarta.persistence.Table;
|
import jakarta.persistence.Table;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@ package enseirb.myinpulse.postgres_db.model;
|
|||||||
|
|
||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -12,30 +12,14 @@ import java.util.List;
|
|||||||
@Table(name = "rendez_vous")
|
@Table(name = "rendez_vous")
|
||||||
public class RendezVous {
|
public class RendezVous {
|
||||||
|
|
||||||
@Id
|
|
||||||
@NotNull
|
|
||||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
||||||
private Long id_rdv;
|
|
||||||
|
|
||||||
private LocalDate date_rdv;
|
|
||||||
|
|
||||||
private LocalTime heure_rdv;
|
|
||||||
|
|
||||||
private LocalTime duree_rdv;
|
|
||||||
|
|
||||||
@Column(length = 255)
|
|
||||||
private String lieu_rdv;
|
|
||||||
|
|
||||||
private String sujet_rdv;
|
|
||||||
|
|
||||||
@OneToMany(mappedBy = "rendezVousEntrepreneurs", fetch = FetchType.LAZY, orphanRemoval = true)
|
@OneToMany(mappedBy = "rendezVousEntrepreneurs", fetch = FetchType.LAZY, orphanRemoval = true)
|
||||||
private List<Entrepreneurs> ListEntrepreneurs = new ArrayList<>();
|
private final List<Entrepreneurs> ListEntrepreneurs = new ArrayList<>();
|
||||||
|
|
||||||
@OneToMany(mappedBy = "rendezVousAdministrateurs", fetch = FetchType.LAZY, orphanRemoval = true)
|
@OneToMany(mappedBy = "rendezVousAdministrateurs", fetch = FetchType.LAZY, orphanRemoval = true)
|
||||||
private List<Administrateurs> ListAdministrateurs = new ArrayList<>();
|
private final List<Administrateurs> ListAdministrateurs = new ArrayList<>();
|
||||||
|
|
||||||
@OneToMany(mappedBy = "rendezVousComptesRendus", fetch = FetchType.LAZY, orphanRemoval = true)
|
@OneToMany(mappedBy = "rendezVousComptesRendus", fetch = FetchType.LAZY, orphanRemoval = true)
|
||||||
private List<ComptesRendus> ListComptesRendus = new ArrayList<>();
|
private final List<ComptesRendus> ListComptesRendus = new ArrayList<>();
|
||||||
|
|
||||||
@ManyToMany(
|
@ManyToMany(
|
||||||
fetch = FetchType.LAZY,
|
fetch = FetchType.LAZY,
|
||||||
@ -46,6 +30,20 @@ public class RendezVous {
|
|||||||
inverseJoinColumns = @JoinColumn(name = "id_section"))
|
inverseJoinColumns = @JoinColumn(name = "id_section"))
|
||||||
List<Sections> ListSections = new ArrayList<>();
|
List<Sections> ListSections = new ArrayList<>();
|
||||||
|
|
||||||
|
@Id
|
||||||
|
@NotNull
|
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
|
private Long id_rdv;
|
||||||
|
|
||||||
|
private LocalDate date_rdv;
|
||||||
|
private LocalTime heure_rdv;
|
||||||
|
private LocalTime duree_rdv;
|
||||||
|
|
||||||
|
@Column(length = 255)
|
||||||
|
private String lieu_rdv;
|
||||||
|
|
||||||
|
private String sujet_rdv;
|
||||||
|
|
||||||
public RendezVous() {}
|
public RendezVous() {}
|
||||||
|
|
||||||
public RendezVous(
|
public RendezVous(
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package enseirb.myinpulse.postgres_db.repository;
|
package enseirb.myinpulse.postgres_db.repository;
|
||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.Administrateurs;
|
import enseirb.myinpulse.postgres_db.model.Administrateurs;
|
||||||
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package enseirb.myinpulse.postgres_db.repository;
|
package enseirb.myinpulse.postgres_db.repository;
|
||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.ComptesRendus;
|
import enseirb.myinpulse.postgres_db.model.ComptesRendus;
|
||||||
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package enseirb.myinpulse.postgres_db.repository;
|
package enseirb.myinpulse.postgres_db.repository;
|
||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.Entrepreneurs;
|
import enseirb.myinpulse.postgres_db.model.Entrepreneurs;
|
||||||
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package enseirb.myinpulse.postgres_db.repository;
|
package enseirb.myinpulse.postgres_db.repository;
|
||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.Projets;
|
import enseirb.myinpulse.postgres_db.model.Projets;
|
||||||
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package enseirb.myinpulse.postgres_db.repository;
|
package enseirb.myinpulse.postgres_db.repository;
|
||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.RendezVous;
|
import enseirb.myinpulse.postgres_db.model.RendezVous;
|
||||||
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package enseirb.myinpulse.postgres_db.repository;
|
package enseirb.myinpulse.postgres_db.repository;
|
||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.Sections;
|
import enseirb.myinpulse.postgres_db.model.Sections;
|
||||||
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package enseirb.myinpulse.postgres_db.repository;
|
package enseirb.myinpulse.postgres_db.repository;
|
||||||
|
|
||||||
import enseirb.myinpulse.postgres_db.model.Utilisateurs;
|
import enseirb.myinpulse.postgres_db.model.Utilisateurs;
|
||||||
|
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
package enseirb.myinpulse.security;
|
package enseirb.myinpulse.security;
|
||||||
|
|
||||||
|
import static java.util.stream.Collectors.toSet;
|
||||||
|
|
||||||
import org.springframework.core.convert.converter.Converter;
|
import org.springframework.core.convert.converter.Converter;
|
||||||
import org.springframework.security.authentication.AbstractAuthenticationToken;
|
import org.springframework.security.authentication.AbstractAuthenticationToken;
|
||||||
import org.springframework.security.core.GrantedAuthority;
|
import org.springframework.security.core.GrantedAuthority;
|
||||||
@ -14,8 +16,6 @@ import java.util.Map;
|
|||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
import java.util.stream.Stream;
|
import java.util.stream.Stream;
|
||||||
|
|
||||||
import static java.util.stream.Collectors.toSet;
|
|
||||||
|
|
||||||
public class KeycloakJwtRolesConverter implements Converter<Jwt, AbstractAuthenticationToken> {
|
public class KeycloakJwtRolesConverter implements Converter<Jwt, AbstractAuthenticationToken> {
|
||||||
/** Prefix used for realm level roles. */
|
/** Prefix used for realm level roles. */
|
||||||
public static final String PREFIX_REALM_ROLE = "ROLE_REALM_";
|
public static final String PREFIX_REALM_ROLE = "ROLE_REALM_";
|
||||||
|
@ -2,11 +2,7 @@ spring.application.name=myinpulse
|
|||||||
spring.security.oauth2.resourceserver.jwt.jwk-set-uri=http://localhost:7080/realms/test/protocol/openid-connect/certs
|
spring.security.oauth2.resourceserver.jwt.jwk-set-uri=http://localhost:7080/realms/test/protocol/openid-connect/certs
|
||||||
spring.security.oauth2.resourceserver.jwt.issuer-uri=http://localhost:7080/realms/test
|
spring.security.oauth2.resourceserver.jwt.issuer-uri=http://localhost:7080/realms/test
|
||||||
logging.level.org.springframework.security=DEBUG
|
logging.level.org.springframework.security=DEBUG
|
||||||
#spring.datasource.url=jdbc:postgresql://postgres/${POSTGRES_DB}
|
spring.datasource.url=jdbc:postgresql://${DATABASE_URL}/${BACKEND_DB}
|
||||||
spring.datasource.url=jdbc:postgresql://localhost:5433/backend_db
|
spring.datasource.username=${BACKEND_USER}
|
||||||
spring.datasource.username=backend_db_user
|
spring.datasource.password=${BACKEND_PASSWORD}
|
||||||
spring.datasource.password=backend_db_user_password
|
|
||||||
spring.jpa.hibernate.ddl-auto=update
|
spring.jpa.hibernate.ddl-auto=update
|
||||||
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
|
|
||||||
|
|
||||||
spring.data.rest.base-path=/my/base/path
|
|
@ -1,10 +1,13 @@
|
|||||||
TRUNCATE projets, utilisateurs, entrepreneurs, sections, rendez_vous, comptes_rendus CASCADE;
|
TRUNCATE projets, utilisateurs, entrepreneurs, sections, rendez_vous, comptes_rendus CASCADE;
|
||||||
|
|
||||||
INSERT INTO projets (nom_projet, logo, date_creation, status_projet) VALUES
|
INSERT INTO projets (nom_projet, logo, date_creation, status_projet)
|
||||||
('Eau du robinet', decode('013d7d16d7ad4fefb61bd95b765c8ceb', 'hex'), TO_DATE('01-OCT-2023', 'DD-MON-YYYY'), 'En cours'),
|
VALUES ('Eau du robinet', decode('013d7d16d7ad4fefb61bd95b765c8ceb', 'hex'), TO_DATE('01-OCT-2023', 'DD-MON-YYYY'),
|
||||||
('Air oxygéné', decode('150647a0984e8f228cd14b54', 'hex'), TO_DATE('04-APR-2024', 'DD-MON-YYYY'), 'En cours'),
|
'En cours'),
|
||||||
('Débat concours', decode('022024abd5486e245c145dda65116f', 'hex'), TO_DATE('22-NOV-2023', 'DD-MON-YYYY'), 'Suspendu'),
|
('Air oxygéné', decode('150647a0984e8f228cd14b54', 'hex'), TO_DATE('04-APR-2024', 'DD-MON-YYYY'), 'En cours'),
|
||||||
('HDeirbMI', decode('ab548d6c1d595a2975e6476f544d14c55a', 'hex'), TO_DATE('07-DEC-2024', 'DD-MON-YYYY'), 'Lancement');
|
('Débat concours', decode('022024abd5486e245c145dda65116f', 'hex'), TO_DATE('22-NOV-2023', 'DD-MON-YYYY'),
|
||||||
|
'Suspendu'),
|
||||||
|
('HDeirbMI', decode('ab548d6c1d595a2975e6476f544d14c55a', 'hex'), TO_DATE('07-DEC-2024', 'DD-MON-YYYY'),
|
||||||
|
'Lancement');
|
||||||
|
|
||||||
INSERT INTO utilisateurs (nom_utilisateur, prenom_utilisateur, mail_principal, mail_secondaire, numero_telephone) VALUES
|
INSERT INTO utilisateurs (nom_utilisateur, prenom_utilisateur, mail_principal, mail_secondaire, numero_telephone) VALUES
|
||||||
('Dupont', 'Dupond', 'super@mail.fr', 'super2@mail.fr', '06 45 72 45 98'),
|
('Dupont', 'Dupond', 'super@mail.fr', 'super2@mail.fr', '06 45 72 45 98'),
|
||||||
|
@ -10,12 +10,13 @@ DROP TABLE IF EXISTS formes CASCADE;
|
|||||||
|
|
||||||
CREATE TABLE projets
|
CREATE TABLE projets
|
||||||
(
|
(
|
||||||
id_projet SERIAL NOT NULL,
|
id_projet SERIAL NOT NULL,
|
||||||
nom_projet VARCHAR(255) ,
|
nom_projet VARCHAR(255),
|
||||||
logo BYTEA ,
|
logo BYTEA,
|
||||||
date_creation DATE ,
|
date_creation DATE,
|
||||||
status_projet VARCHAR(255) ,
|
status_projet VARCHAR(255),
|
||||||
CONSTRAINT pk_projet PRIMARY KEY (id_projet) );
|
CONSTRAINT pk_projet PRIMARY KEY (id_projet)
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE utilisateurs
|
CREATE TABLE utilisateurs
|
||||||
(
|
(
|
||||||
@ -29,46 +30,52 @@ CONSTRAINT pk_utilisateur PRIMARY KEY (id_utilisateur) );
|
|||||||
|
|
||||||
CREATE TABLE entrepreneurs
|
CREATE TABLE entrepreneurs
|
||||||
(
|
(
|
||||||
ecole VARCHAR(255) ,
|
id_entrepreneur SERIAL REFERENCES utilisateurs (id_utilisateur),
|
||||||
filiere VARCHAR(255) ,
|
ecole VARCHAR(255),
|
||||||
status_snee BOOLEAN ,
|
filiere VARCHAR(255),
|
||||||
CONSTRAINT pk_entrepreneur PRIMARY KEY (id_utilisateur),
|
status_snee BOOLEAN,
|
||||||
INHERITS (utilisateurs) );
|
CONSTRAINT pk_entrepreneur PRIMARY KEY (id_entrepreneur)
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE administrateurs
|
CREATE TABLE administrateurs
|
||||||
(
|
(
|
||||||
CONSTRAINT pk_administrateur PRIMARY KEY (id_utilisateur),
|
id_administrateur SERIAL REFERENCES utilisateurs (id_utilisateur),
|
||||||
INHERITS (utilisateurs) );
|
CONSTRAINT pk_administrateur PRIMARY KEY (id_administrateur)
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE sections
|
CREATE TABLE sections
|
||||||
(
|
(
|
||||||
id_section SERIAL NOT NULL,
|
id_section SERIAL NOT NULL,
|
||||||
titre VARCHAR(255) ,
|
titre VARCHAR(255),
|
||||||
contenu_section TEXT ,
|
contenu_section TEXT,
|
||||||
date_modification TIMESTAMP ,
|
date_modification TIMESTAMP,
|
||||||
CONSTRAINT pk_section PRIMARY KEY (id_section) );
|
CONSTRAINT pk_section PRIMARY KEY (id_section)
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE rendez_vous
|
CREATE TABLE rendez_vous
|
||||||
(
|
(
|
||||||
id_rdv SERIAL NOT NULL,
|
id_rdv SERIAL NOT NULL,
|
||||||
date_rdv DATE ,
|
date_rdv DATE,
|
||||||
heure_rdv TIME ,
|
heure_rdv TIME,
|
||||||
duree_rdv TIME ,
|
duree_rdv TIME,
|
||||||
lieu_rdv VARCHAR(255) ,
|
lieu_rdv VARCHAR(255),
|
||||||
sujet_rdv TEXT ,
|
sujet_rdv TEXT,
|
||||||
CONSTRAINT pk_rdv PRIMARY KEY (id_rdv) );
|
CONSTRAINT pk_rdv PRIMARY KEY (id_rdv)
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE comptes_rendus
|
CREATE TABLE comptes_rendus
|
||||||
(
|
(
|
||||||
id_compte_rendu SERIAL NOT NULL,
|
id_compte_rendu SERIAL NOT NULL,
|
||||||
contenu_compte_rendu TEXT ,
|
contenu_compte_rendu TEXT,
|
||||||
CONSTRAINT pk_compte_rendu PRIMARY KEY (id_compte_rendu) );
|
CONSTRAINT pk_compte_rendu PRIMARY KEY (id_compte_rendu)
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE concerner
|
CREATE TABLE concerner
|
||||||
(
|
(
|
||||||
id_section SERIAL REFERENCES sections (id_section),
|
id_section SERIAL REFERENCES sections (id_section),
|
||||||
id_rdv SERIAL REFERENCES sections (id_rdv),
|
id_rdv SERIAL REFERENCES sections (id_rdv),
|
||||||
CONSTRAINT pk_concerner PRIMARY KEY (id_section, id_rdv) );
|
CONSTRAINT pk_concerner PRIMARY KEY (id_section, id_rdv)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
ALTER TABLE projets
|
ALTER TABLE projets
|
||||||
@ -99,17 +106,23 @@ ALTER TABLE sections
|
|||||||
ALTER TABLE rendez-vous
|
ALTER TABLE rendez-vous
|
||||||
ADD CONSTRAINT fk1_rdv FOREIGN KEY (id_entrepreneur)
|
ADD CONSTRAINT fk1_rdv FOREIGN KEY (id_entrepreneur)
|
||||||
REFERENCES entrepreneurs (id_entrepreneur)
|
REFERENCES entrepreneurs (id_entrepreneur)
|
||||||
ON DELETE CASCADE;
|
ON
|
||||||
|
DELETE
|
||||||
|
CASCADE;
|
||||||
|
|
||||||
ALTER TABLE rendez-vous
|
ALTER TABLE rendez-vous
|
||||||
ADD CONSTRAINT fk2_rdv FOREIGN KEY (id_administrateur)
|
ADD CONSTRAINT fk2_rdv FOREIGN KEY (id_administrateur)
|
||||||
REFERENCES administrateurs (id_administrateur)
|
REFERENCES administrateurs (id_administrateur)
|
||||||
ON DELETE CASCADE;
|
ON
|
||||||
|
DELETE
|
||||||
|
CASCADE;
|
||||||
|
|
||||||
ALTER TABLE comptes-rendus
|
ALTER TABLE comptes-rendus
|
||||||
ADD CONSTRAINT fk1_compte_rendu FOREIGN KEY (id_rdv)
|
ADD CONSTRAINT fk1_compte_rendu FOREIGN KEY (id_rdv)
|
||||||
REFERENCES rendez_vous (id_rdv)
|
REFERENCES rendez_vous (id_rdv)
|
||||||
ON DELETE CASCADE;
|
ON
|
||||||
|
DELETE
|
||||||
|
CASCADE;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,3 +12,11 @@ KEYCLOAK_PASSWORD=keycloak_db_user_password
|
|||||||
BACKEND_DB=backend_db
|
BACKEND_DB=backend_db
|
||||||
BACKEND_USER=backend_db_user
|
BACKEND_USER=backend_db_user
|
||||||
BACKEND_PASSWORD=backend_db_user_password
|
BACKEND_PASSWORD=backend_db_user_password
|
||||||
|
|
||||||
|
DATABASE_URL=localhost:5433
|
||||||
|
|
||||||
|
VITE_KEYCLOAK_URL=http://localhost:7080
|
||||||
|
VITE_KEYCLOAK_CLIENT_ID=myinpulse
|
||||||
|
VITE_KEYCLOAK_REALM=test
|
||||||
|
VITE_APP_URL=http://localhost:8080
|
||||||
|
VITE_BACKEND_URL=http://localhost:8081/
|
@ -1,5 +0,0 @@
|
|||||||
VITE_KEYCLOAK_URL=http://localhost:7080
|
|
||||||
VITE_KEYCLOAK_CLIENT_ID=myinpulse
|
|
||||||
VITE_KEYCLOAK_REALM=test
|
|
||||||
VITE_APP_URL=http://localhost:8080
|
|
||||||
VITE_BACKEND_URL=http://localhost:8081/
|
|
52
config/dev.docker-compose.yaml
Normal file
52
config/dev.docker-compose.yaml
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
services:
|
||||||
|
postgres:
|
||||||
|
env_file: .env
|
||||||
|
build:
|
||||||
|
context: postgres/
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
container_name: MyINPulse-DB
|
||||||
|
ports:
|
||||||
|
- 5433:5432
|
||||||
|
volumes:
|
||||||
|
- ./postgres/data:/var/lib/postgresql/data
|
||||||
|
|
||||||
|
|
||||||
|
keycloak:
|
||||||
|
container_name: MyINPulse-keycloak
|
||||||
|
build:
|
||||||
|
context: ./keycloak
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
args:
|
||||||
|
KC_DB: postgres
|
||||||
|
KC_DB_URL: jdbc:postgresql://postgres/${POSTGRES_DB}
|
||||||
|
KC_DB_USERNAME: ${POSTGRES_USER}
|
||||||
|
KC_DB_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
|
environment:
|
||||||
|
KC_HOSTNAME_PORT: 7080
|
||||||
|
KC_HOSTNAME_STRICT_BACKCHANNEL: "true"
|
||||||
|
KC_BOOTSTRAP_ADMIN_USERNAME: ${KEYCLOAK_ADMIN}
|
||||||
|
KC_BOOTSTRAP_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD}
|
||||||
|
KC_LOG_LEVEL: info
|
||||||
|
command: ["start-dev", "--http-port", "7080", "--https-port", "7443", "--hostname", "${KEYCLOAK_HOSTNAME}"]
|
||||||
|
ports:
|
||||||
|
- "7080:7080"
|
||||||
|
- "7443:7443"
|
||||||
|
depends_on:
|
||||||
|
- postgres
|
||||||
|
|
||||||
|
#front:
|
||||||
|
# build:
|
||||||
|
# context: ./front/
|
||||||
|
# dockerfile: Dockerfile
|
||||||
|
# container_name: MyINPulse-front
|
||||||
|
# ports:
|
||||||
|
# - "8080:80"
|
||||||
|
|
||||||
|
#back:
|
||||||
|
# build:
|
||||||
|
# context: ./MyINPulse-back/
|
||||||
|
# dockerfile: Dockerfile
|
||||||
|
# container_name: MyINPulse-back
|
||||||
|
# ports:
|
||||||
|
# - "8081:8080"
|
||||||
|
|
22
config/dev.env
Normal file
22
config/dev.env
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
POSTGRES_DB=postgres_db
|
||||||
|
POSTGRES_USER=postgres
|
||||||
|
POSTGRES_PASSWORD=postgres_db_user_password
|
||||||
|
|
||||||
|
KEYCLOAK_ADMIN=admin
|
||||||
|
KEYCLOAK_ADMIN_PASSWORD=admin
|
||||||
|
KEYCLOAK_HOSTNAME=localhost
|
||||||
|
KEYCLOAK_DB=keycloak_db
|
||||||
|
KEYCLOAK_USER=keycloak_db_user
|
||||||
|
KEYCLOAK_PASSWORD=keycloak_db_user_password
|
||||||
|
|
||||||
|
BACKEND_DB=backend_db
|
||||||
|
BACKEND_USER=backend_db_user
|
||||||
|
BACKEND_PASSWORD=backend_db_user_password
|
||||||
|
|
||||||
|
DATABASE_URL=localhost:5433
|
||||||
|
|
||||||
|
VITE_KEYCLOAK_URL=http://localhost:7080
|
||||||
|
VITE_KEYCLOAK_CLIENT_ID=myinpulse-dev
|
||||||
|
VITE_KEYCLOAK_REALM=test
|
||||||
|
VITE_APP_URL=http://localhost:5173
|
||||||
|
VITE_BACKEND_URL=http://localhost:8081/
|
@ -12,3 +12,11 @@ KEYCLOAK_PASSWORD=keycloak_db_user_password
|
|||||||
BACKEND_DB=backend_db
|
BACKEND_DB=backend_db
|
||||||
BACKEND_USER=backend_db_user
|
BACKEND_USER=backend_db_user
|
||||||
BACKEND_PASSWORD=backend_db_user_password
|
BACKEND_PASSWORD=backend_db_user_password
|
||||||
|
|
||||||
|
DATABASE_URL=MyINPulse-DB
|
||||||
|
|
||||||
|
VITE_KEYCLOAK_URL=http://localhost:7080
|
||||||
|
VITE_KEYCLOAK_CLIENT_ID=myinpulse-dev
|
||||||
|
VITE_KEYCLOAK_REALM=test
|
||||||
|
VITE_APP_URL=http://localhost:5173
|
||||||
|
VITE_BACKEND_URL=http://localhost:8081/
|
@ -1,5 +0,0 @@
|
|||||||
VITE_KEYCLOAK_URL=http://localhost:7080
|
|
||||||
VITE_KEYCLOAK_CLIENT_ID=myinpulse-dev
|
|
||||||
VITE_KEYCLOAK_REALM=test
|
|
||||||
VITE_APP_URL=http://localhost:5173
|
|
||||||
VITE_BACKEND_URL=http://localhost:8081/
|
|
@ -30,10 +30,10 @@ services:
|
|||||||
KC_BOOTSTRAP_ADMIN_USERNAME: ${KEYCLOAK_ADMIN}
|
KC_BOOTSTRAP_ADMIN_USERNAME: ${KEYCLOAK_ADMIN}
|
||||||
KC_BOOTSTRAP_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD}
|
KC_BOOTSTRAP_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD}
|
||||||
KC_LOG_LEVEL: info
|
KC_LOG_LEVEL: info
|
||||||
command: ["start-dev", "--http-port", "7080", "--https-port", "7443", "--hostname", "${KEYCLOAK_HOSTNAME}"]
|
command: ["start-dev", "--http-port", "7080", "--https-port", "7443", "--hostname", "${KEYCLOAK_HOSTNAME}"] # TODO: remove start-dev
|
||||||
ports:
|
#ports:
|
||||||
- "7080:7080"
|
# - "7080:7080"
|
||||||
- "7443:7443"
|
# - "7443:7443"
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
|
|
||||||
@ -50,6 +50,6 @@ services:
|
|||||||
context: ./MyINPulse-back/
|
context: ./MyINPulse-back/
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
container_name: MyINPulse-back
|
container_name: MyINPulse-back
|
||||||
ports:
|
#ports:
|
||||||
- "8081:8080"
|
# - "8081:8080"
|
||||||
|
|
@ -12,3 +12,11 @@ KEYCLOAK_PASSWORD=keycloak_db_user_password
|
|||||||
BACKEND_DB=backend_db
|
BACKEND_DB=backend_db
|
||||||
BACKEND_USER=backend_db_user
|
BACKEND_USER=backend_db_user
|
||||||
BACKEND_PASSWORD=backend_db_user_password
|
BACKEND_PASSWORD=backend_db_user_password
|
||||||
|
|
||||||
|
DATABASE_URL=MyINPulse-DB
|
||||||
|
|
||||||
|
VITE_KEYCLOAK_URL=https://0549cd63f912d5dc9b31278d6f.eirb.fr
|
||||||
|
VITE_KEYCLOAK_CLIENT_ID=myinpulse-eirb
|
||||||
|
VITE_KEYCLOAK_REALM=test
|
||||||
|
VITE_APP_URL=https://0549cd63f912d5dc9b31278d6f.piair.dev
|
||||||
|
VITE_BACKEND_URL=http://TODO/
|
@ -1,5 +0,0 @@
|
|||||||
VITE_KEYCLOAK_URL=https://0549cd63f912d5dc9b31278d6f.eirb.fr
|
|
||||||
VITE_KEYCLOAK_CLIENT_ID=myinpulse-eirb
|
|
||||||
VITE_KEYCLOAK_REALM=test
|
|
||||||
VITE_APP_URL=https://0549cd63f912d5dc9b31278d6f.piair.dev
|
|
||||||
VITE_BACKEND_URL=http://TODO/
|
|
Loading…
x
Reference in New Issue
Block a user