mirror of
https://github.com/TeamPiped/Piped-Backend
synced 2025-11-06 23:20:11 +01:00
Compare commits
4 Commits
0a4d251637
...
15721c28d7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
15721c28d7 | ||
|
|
c5921f6b70 | ||
|
|
946b3762a9 | ||
|
|
e36bbd0445 |
@ -31,8 +31,8 @@ dependencies {
|
|||||||
implementation 'io.activej:activej-launchers-http:5.5'
|
implementation 'io.activej:activej-launchers-http:5.5'
|
||||||
implementation 'org.hsqldb:hsqldb:2.7.4'
|
implementation 'org.hsqldb:hsqldb:2.7.4'
|
||||||
implementation 'org.postgresql:postgresql:42.7.7'
|
implementation 'org.postgresql:postgresql:42.7.7'
|
||||||
implementation 'org.hibernate:hibernate-core:6.4.1.Final'
|
implementation 'org.hibernate:hibernate-core:7.1.2.Final'
|
||||||
implementation 'org.hibernate:hibernate-hikaricp:6.4.1.Final'
|
implementation 'org.hibernate:hibernate-hikaricp:7.1.2.Final'
|
||||||
implementation 'org.liquibase:liquibase-core:4.33.0'
|
implementation 'org.liquibase:liquibase-core:4.33.0'
|
||||||
implementation('org.liquibase.ext:liquibase-yugabytedb:4.33.0') { exclude group: 'org.liquibase' }
|
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.2'
|
||||||
|
|||||||
@ -166,8 +166,8 @@ public class Constants {
|
|||||||
S3_CLIENT = null;
|
S3_CLIENT = null;
|
||||||
}
|
}
|
||||||
System.getenv().forEach((key, value) -> {
|
System.getenv().forEach((key, value) -> {
|
||||||
if (key.startsWith("hibernate"))
|
if (key.startsWith("HIBERNATE"))
|
||||||
hibernateProperties.put(key, value);
|
hibernateProperties.put(key.replace("__", ".").toLowerCase(), value);
|
||||||
});
|
});
|
||||||
MATRIX_SERVER = getProperty(prop, "MATRIX_SERVER", "https://matrix-client.matrix.org");
|
MATRIX_SERVER = getProperty(prop, "MATRIX_SERVER", "https://matrix-client.matrix.org");
|
||||||
MATRIX_TOKEN = getProperty(prop, "MATRIX_TOKEN");
|
MATRIX_TOKEN = getProperty(prop, "MATRIX_TOKEN");
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user