Project init
All checks were successful
Maven build / build (push) Successful in 1m47s

This commit is contained in:
Guillaume Dugas
2025-09-09 10:00:01 +02:00
commit de339f9554
102 changed files with 3781 additions and 0 deletions

34
README.md Normal file
View File

@@ -0,0 +1,34 @@
# semrack
This project uses Quarkus, the Supersonic Subatomic Java Framework.
If you want to learn more about Quarkus, please visit its website: <https://quarkus.io/>.
## Quickstart
### Dev mode local execution
```shell script
./mvnw quarkus:dev
```
### Build project
```shell script
./mvnw clean install
```
## Configuration
### Storage Postgres
The storage-postgres module use the quarkus jdbc-postgresql extension.
In dev mode, the database devservices is used. To configure database in production, you need to set the quarkus jdbc parameters :
quarkus.datasource.jdbc.url=jdbc:postgresql://${semrack.db.host}:${semrack.db.port}/${semrack.db.name}
quarkus.datasource.reactive.url=postgresql://${semrack.db.host}:${semrack.db.port}/${semrack.db.name}
quarkus.datasource.username=${semrack.db.user}
quarkus.datasource.password=${semrack.db.password}