https://github.com/ymougenel/referencecollector
Helps you gather, store and share references links
https://github.com/ymougenel/referencecollector
ansible data docker keycloak kotlin spring-boot thymeleaf
Last synced: 2 months ago
JSON representation
Helps you gather, store and share references links
- Host: GitHub
- URL: https://github.com/ymougenel/referencecollector
- Owner: ymougenel
- License: mit
- Created: 2019-02-11T21:05:24.000Z (over 7 years ago)
- Default Branch: develop
- Last Pushed: 2022-09-08T01:00:18.000Z (almost 4 years ago)
- Last Synced: 2025-12-02T02:49:47.065Z (7 months ago)
- Topics: ansible, data, docker, keycloak, kotlin, spring-boot, thymeleaf
- Language: Kotlin
- Homepage: https://ymougenel.com/references
- Size: 145 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ReferenceCollector

Helps you gather, store and share references links.
# Use it
## Requirements
* docker
* docker-compose
## Launch the application
* Get the docker file: `curl https://raw.githubusercontent.com/ymougenel/referenceCollector/master/docker-compose.yml > docker-compose.yml`
* Run the application: `docker-compose up`
> Your application is now available: [http://localhost:8092/references](http://localhost:8092/references)
## Development
Run a postgres database:
```shell
docker run \
-p 5432:5432 \
-e POSTGRES_USER=dbuser \
-e POSTGRES_PASSWORD=dbp4ss \
-e POSTGRES_DB=reference_collector postgres:11.1
```
Compile the application:
```shell
mvn clean package
```
Run the generated jar
```shell
java -Dspring.profiles.active=dev -jar target/referenceCollector-X.X.X.jar
```
*_Default user: login=user, password=password_*
### Keyclaok
**TODO**
## Deploy with Ansible
Configure the inventory file and launch ansible:
```
ansible-playbook -i ansible/inventories/build.yml ansible/playbook.yml
```
# License
The project is under open-source [LICENSE](LICENSE), it therefore complies to all the terms related to [the open-source philosophy](https://en.wikipedia.org/wiki/The_Open_Source_Definition).