Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MarekSuchanek committed Mar 3, 2023
1 parent 512a4b8 commit c102f92
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]


## [0.1.0]

### Added

- Initiated Train Handler server project
- Setup CI, code style checks, and security audits


[Unreleased]: /../../compare/master...develop
[0.1.0]: /../../tree/v0.1.0
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,25 @@

Train Handler is intended to be used together with [client](https://github.com/FAIRDataTeam/TrainHandler-client) via Docker (unless for development purposes).

*To be done: repository with docker-compose and configuration*
The intended use is via Docker and Docker Compose, configured via envvars:

```yaml
trainhandler-server:
image: fairdata/trainhandler-server:latest
restart: unless-stopped
# volumes:
# - ${PROJECT_ROOT}/application.yml:/app/application.yml:ro
environment:
FDT_DISPATCH_ROOT: ${API_URL}
FDT_DISPATCH_INTERVAL: PT60S
FDT_POSTGRES_DB: ${POSTGRES_DB}
FDT_POSTGRES_USERNAME: ${POSTGRES_USER}
FDT_POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
FDT_KEYCLOAK_ENABLED: true
FDT_KEYCLOAK_URL: ${KEYCLOAK_URL}
FDT_KEYCLOAK_REALM: ${KEYCLOAK_REALM}
FDT_KEYCLOAK_RESOURCE: ${KEYCLOAK_CLIENT_API}
```
## Development
Expand Down
6 changes: 1 addition & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>org.fairdatatrain</groupId>
<artifactId>trainhandler</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.1.0</version>

<name>Train Handler</name>
<description>FAIR Data Train Handler</description>
Expand Down Expand Up @@ -47,10 +47,6 @@
<plugin.spotbugs.version>4.7.3.2</plugin.spotbugs.version>
<plugin.git_commit_id.version>5.0.0</plugin.git_commit_id.version>
<plugin.rdf4j_generator.version>0.2.0</plugin.rdf4j_generator.version>

<!-- override for security -->
<snakeyaml.version>1.33</snakeyaml.version>
<spring-security.version>5.8.1</spring-security.version>
</properties>

<dependencies>
Expand Down

0 comments on commit c102f92

Please sign in to comment.