mirror of
https://github.com/TeamPiped/Piped-Backend
synced 2025-11-06 15:19:55 +01:00
Compare commits
4 Commits
6afb86010f
...
b9a1f36be1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b9a1f36be1 | ||
|
|
c5921f6b70 | ||
|
|
946b3762a9 | ||
|
|
e36bbd0445 |
@ -35,7 +35,7 @@ dependencies {
|
||||
implementation 'org.hibernate:hibernate-hikaricp:6.4.1.Final'
|
||||
implementation 'org.liquibase:liquibase-core:4.33.0'
|
||||
implementation('org.liquibase.ext:liquibase-yugabytedb:4.33.0') { exclude group: 'org.liquibase' }
|
||||
implementation 'com.zaxxer:HikariCP:6.3.2'
|
||||
implementation 'com.zaxxer:HikariCP:6.3.3'
|
||||
implementation 'org.springframework.security:spring-security-crypto:6.5.3'
|
||||
implementation 'commons-logging:commons-logging:1.3.5'
|
||||
implementation(platform("com.squareup.okhttp3:okhttp-bom:5.1.0"))
|
||||
|
||||
@ -166,8 +166,8 @@ public class Constants {
|
||||
S3_CLIENT = null;
|
||||
}
|
||||
System.getenv().forEach((key, value) -> {
|
||||
if (key.startsWith("hibernate"))
|
||||
hibernateProperties.put(key, value);
|
||||
if (key.startsWith("HIBERNATE"))
|
||||
hibernateProperties.put(key.replace("__", ".").toLowerCase(), value);
|
||||
});
|
||||
MATRIX_SERVER = getProperty(prop, "MATRIX_SERVER", "https://matrix-client.matrix.org");
|
||||
MATRIX_TOKEN = getProperty(prop, "MATRIX_TOKEN");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user