https://github.com/inseefr/rem-back-office
Survey unit repository
https://github.com/inseefr/rem-back-office
Last synced: about 1 year ago
JSON representation
Survey unit repository
- Host: GitHub
- URL: https://github.com/inseefr/rem-back-office
- Owner: InseeFr
- License: mit
- Created: 2022-10-05T08:31:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-26T12:49:25.000Z (about 2 years ago)
- Last Synced: 2025-01-29T06:55:16.430Z (over 1 year ago)
- Language: Java
- Size: 254 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# REM-Back-Office
REM-Back-Office is a Java Spring Boot application that manages the survey units repository for multimode surveys.
## Requirements
* JDK 17 +
* Maven 3.6 +
## Install and excute unit tests
Use the maven clean and maven install
```shell
mvn clean install
```
## Running the application locally
### Minimal Local Properties file
Create local.properties in ${HOME}/rem/ directory and complete the following properties:
```shell
#Logs configuration
fr.insee.rem.log.file.name=[filepath]
#Application configuration (without auth)
fr.insee.rem.security.auth.mode=noauth
fr.insee.rem.host=http://localhost:8080
#Database configuration
fr.insee.rem.persistence.database.url =
fr.insee.rem.persistence.database.name =
fr.insee.rem.persistence.database.user =
fr.insee.rem.persistence.database.password =
```
### jar with embedded tomcat
The jar file was created in the application/target directory.
```shell
java -jar application/target/rem-rembo-[version].jar
```
### Application Accesses locally
To access to swagger-ui, use this url : [http://localhost:8080](http://localhost:8080)