{"id":23554164,"url":"https://github.com/silverbackhq/reindeer","last_synced_at":"2025-04-28T17:13:55.406Z","repository":{"id":35933339,"uuid":"219716102","full_name":"silverbackhq/Reindeer","owner":"silverbackhq","description":"🧬 Reactive Applications Boilerplate in Java.","archived":false,"fork":false,"pushed_at":"2025-04-25T12:12:35.000Z","size":437,"stargazers_count":3,"open_issues_count":8,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-28T17:13:50.285Z","etag":null,"topics":["clivern","microservice","reactive","reindeer","rest-api","silverbackhq","vertx"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/silverbackhq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"clivern"}},"created_at":"2019-11-05T10:17:24.000Z","updated_at":"2023-12-17T18:09:33.000Z","dependencies_parsed_at":"2024-02-08T15:30:14.060Z","dependency_job_id":"f5ed5976-bce5-42f0-b431-62556a7d1de5","html_url":"https://github.com/silverbackhq/Reindeer","commit_stats":null,"previous_names":[],"tags_count":6,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silverbackhq%2FReindeer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silverbackhq%2FReindeer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silverbackhq%2FReindeer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/silverbackhq%2FReindeer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/silverbackhq","download_url":"https://codeload.github.com/silverbackhq/Reindeer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251352624,"owners_count":21575864,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clivern","microservice","reactive","reindeer","rest-api","silverbackhq","vertx"],"created_at":"2024-12-26T12:12:22.538Z","updated_at":"2025-04-28T17:13:55.385Z","avatar_url":"https://github.com/silverbackhq.png","language":"Java","readme":"\u003ca href=\"http://www.reactivemanifesto.org/\"\u003e \u003cimg style=\"border: 0; position: fixed; left: 0; top:0; z-index: 9000\" src=\"https://d379ifj7s9wntv.cloudfront.net/reactivemanifesto/images/ribbons/we-are-reactive-black-left.png\"\u003e \u003c/a\u003e\n\u003cp align=\"center\"\u003e\n    \u003cimg alt=\"Reindeer Logo\" src=\"https://raw.githubusercontent.com/silverbackhq/Reindeer/master/images/logo.png\" height=\"160\" /\u003e\n    \u003ch3 align=\"center\"\u003eReindeer\u003c/h3\u003e\n    \u003cp align=\"center\"\u003eReactive Applications Boilerplate in Java.\u003c/p\u003e\n    \u003cp align=\"center\"\u003e\n        \u003ca href=\"https://github.com/silverbackhq/Reindeer/actions/workflows/ci.yml\"\u003e\u003cimg src=\"https://github.com/silverbackhq/Reindeer/actions/workflows/ci.yml/badge.svg\"\u003e\u003c/a\u003e\n        \u003ca href=\"https://github.com/silverbackhq/Reindeer/releases\"\u003e\u003cimg src=\"https://img.shields.io/badge/Version-1.1.3-blue.svg\"\u003e\u003c/a\u003e\n        \u003ca href=\"https://hub.docker.com/r/clivern/reindeer\"\u003e\u003cimg src=\"https://img.shields.io/badge/Docker-Latest-orange\"\u003e\u003c/a\u003e\n        \u003ca href=\"https://github.com/silverbackhq/Reindeer/blob/master/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/badge/LICENSE-Apache_2.0-orange.svg\"\u003e\u003c/a\u003e\n    \u003c/p\u003e\n\u003c/p\u003e\n\nThis project is mainly for personal \u0026 testing purposes but you can simply fork or use it as a template.\n\n## Documentation\n\n\n### Development:\n\nReindeer built on a top of [vert.x](https://vertx.io/) and uses [gradle](https://gradle.org/) as a build tool. In order to get started, you need to clone the repository and create a config file.\n\n```bash\n$ git clone https://github.com/silverbackhq/Reindeer.git\n$ cp .env.example .env\n```\n\nThen define your custom configs\n\n```env\nAPP_NAME=Reindeer\nAPP_KEY=\nAPP_DEBUG=true\nAPP_URL=http://localhost\nAPP_PORT=8000\n\nAPP_AUTH_TOKEN=\n\nDB_CONNECTION=h2\nDB_HOST=127.0.0.1\nDB_PORT=3306\nDB_DATABASE=./storage/db\nDB_USERNAME=root\nDB_PASSWORD=secret\n\nAPP_TIMEZONE=UTC\nAPP_LANGUAGE=en-us\n\nAPP_LOGGING_HANDLERS=console\nAPP_LOGGING_LEVEL=debug\nAPP_LOGGING_FORMAT={date} [{level}] {class}.{method}() {message}\n\nREINDEER_LOAD_FROM=config\n```\n\nAnd then migrate \u0026 run the application.\n\n```bash\n# Provide the path to .env file \u0026 Run the app\n$ make ARGS=\"-Denv=/path/to/.env\" run\n```\n\nWhenever you do changes, please make sure to run the following commands locally:\n\n```bash\n# to make sure unit and quality testing passed.\n$ make ci\n\n# to format the new code changes.\n$ make format\n\n# To list all commands\n$ make\n```\n\n\n### Deployment:\n\nYou can build and run the jar like this:\n\n```bash\n$ make build\n\n$ java -jar build/libs/reindeer-1.1.3-fat.jar --env=/path/to/.env\n```\n\n\n### Deployment with Docker:\n\nTo run from docker image:\n\n```bash\n$ docker run -d \\\n    --env APP_PORT=8000 \\\n    --env DB_CONNECTION=h2 \\\n    --env DB_HOST=127.0.0.1 \\\n    --env DB_PORT=3306 \\\n    --env DB_DATABASE=/app/storage/db \\\n    --env DB_USERNAME=root \\\n    --env DB_PASSWORD=secret \\\n    --name=reindeer \\\n    --publish 8000:8000 \\\n    clivern/reindeer:1.1.3\n```\n\nOr with docker compose\n\n```bash\n$ docker-compose up -d\n```\n\n\n## Versioning\n\nFor transparency into our release cycle and in striving to maintain backward compatibility, Reindeer is maintained under the [Semantic Versioning guidelines](https://semver.org/) and release process is predictable and business-friendly.\n\nSee the [Releases section of our GitHub project](https://github.com/silverbackhq/reindeer/releases) for changelogs for each release version of Reindeer. It contains summaries of the most noteworthy changes made in each release.\n\n\n## Bug tracker\n\nIf you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/silverbackhq/reindeer/issues\n\n\n## Security Issues\n\nIf you discover a security vulnerability within Reindeer, please send an email to [hello@clivern.com](mailto:hello@clivern.com)\n\n\n## Contributing\n\nWe are an open source, community-driven project so please feel free to join us. see the [contributing guidelines](CONTRIBUTING.md) for more details.\n\n\n## License\n\n© 2019, Silverback. Released under [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).\n\n**Reindeer** is authored and maintained by [@Silverbackhq](http://github.com/silverbackhq).\n","funding_links":["https://github.com/sponsors/clivern"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsilverbackhq%2Freindeer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsilverbackhq%2Freindeer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsilverbackhq%2Freindeer/lists"}