Ce merge enverra dans main : le timeout des token, la limite de 5 token par user, les nouvelles tables pour les demandes d'inscriptions Co-authored-by: Anthony Debucquoy <debucquoy.anthony@gmail.com> Reviewed-on: PGL/Clyde#82 Reviewed-by: Debucquoy Anthony <d.tonitch@gmail.com> Reviewed-by: Maxime <231026@umons.ac.be> Reviewed-by: Wal <karpinskiwal@gmail.com> Co-authored-by: LeoMoulin <leomoulin125@gmail.com> Co-committed-by: LeoMoulin <leomoulin125@gmail.com>
38 lines
1.1 KiB
Java
38 lines
1.1 KiB
Java
package ovh.herisson.Clyde;
|
|
|
|
import javax.sql.DataSource;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.context.annotation.Profile;
|
|
import org.springframework.jdbc.datasource.DriverManagerDataSource;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
@Configuration
|
|
@EnableScheduling
|
|
public class JdbcConfig {
|
|
|
|
@Bean
|
|
@Profile("!prod")
|
|
public DataSource psqlSource(){
|
|
DriverManagerDataSource source = new DriverManagerDataSource();
|
|
source.setDriverClassName("org.postgresql.Driver");
|
|
source.setUrl("jdbc:postgresql://localhost:5432/clyde");
|
|
source.setUsername("devel");
|
|
source.setPassword("devel");
|
|
|
|
return source;
|
|
}
|
|
|
|
@Bean
|
|
@Profile("prod")
|
|
public DataSource psqlSourceProd(){
|
|
DriverManagerDataSource source = new DriverManagerDataSource();
|
|
source.setDriverClassName("org.postgresql.Driver");
|
|
source.setUrl("jdbc:postgresql:clyde?socketFactory=org.newsclub.net.unix.AFUNIXSocketFactory$FactoryArg&socketFactoryArg=/var/run/postgresql/.s.PGSQL.5432");
|
|
source.setUsername("clyde");
|
|
|
|
return source;
|
|
}
|
|
}
|