{"id":27896324,"url":"https://github.com/sergej-stk/mercury","last_synced_at":"2025-10-29T21:17:13.443Z","repository":{"id":291318985,"uuid":"977257059","full_name":"sergej-stk/mercury","owner":"sergej-stk","description":"Mercury - God of financial gain, commerce, eloquence, messages, communication, travelers, boundaries, luck and merchants","archived":false,"fork":false,"pushed_at":"2025-06-02T08:00:56.000Z","size":1618,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-04T05:07:44.220Z","etag":null,"topics":["api","docker","employee-management","hr","java","maven","rest-api","spring-boot"],"latest_commit_sha":null,"homepage":"http://mercury.sergejsteinsiek.com/","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/sergej-stk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-03T19:26:05.000Z","updated_at":"2025-05-10T22:45:06.000Z","dependencies_parsed_at":"2025-06-03T21:34:03.087Z","dependency_job_id":"a3f6bd06-5e2c-4500-86e0-95e352a51755","html_url":"https://github.com/sergej-stk/mercury","commit_stats":null,"previous_names":["sergej-stk/mercury"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/sergej-stk/mercury","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sergej-stk%2Fmercury","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sergej-stk%2Fmercury/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sergej-stk%2Fmercury/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sergej-stk%2Fmercury/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sergej-stk","download_url":"https://codeload.github.com/sergej-stk/mercury/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sergej-stk%2Fmercury/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281699514,"owners_count":26546332,"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","status":"online","status_checked_at":"2025-10-29T02:00:06.901Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["api","docker","employee-management","hr","java","maven","rest-api","spring-boot"],"created_at":"2025-05-05T16:36:39.647Z","updated_at":"2025-10-29T21:17:13.437Z","avatar_url":"https://github.com/sergej-stk.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cbr /\u003e\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/sergej-stk/mercury\"\u003e\n    \u003cimg src=\"assets/logo.png\" alt=\"Logo\" width=\"200\" height=\"200\"\u003e\n  \u003c/a\u003e\n\n\u003ch3 align=\"center\"\u003eMercury API\u003c/h3\u003e\n\n  \u003cp align=\"center\"\u003e\n    API for the Mercury platform, focusing on employee management and HR processes.\n    \u003cbr /\u003e\n    \u003ca href=\"https://mercury.sergejsteinsiek.com/\"\u003e\u003cstrong\u003eExplore the docs »\u003c/strong\u003e\u003c/a\u003e\n    \u003cbr /\u003e\n    \u003cbr /\u003e\n    \u003ca href=\"https://github.com/sergej-stk/mercury/issues/new?template=bugreport.md\"\u003eReport Bug\u003c/a\u003e\n    \u0026middot;\n    \u003ca href=\"https://github.com/sergej-stk/mercury/issues/new?template=featurerequest.md\"\u003eRequest Feature\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\n### Prerequisites\n\nYou will need the following software installed on your system to run this project:\n\n* **Java Development Kit (JDK)**\n    * This project requires **Java 21**.\n    * You can download it from [Oracle JDK](https://www.oracle.com/java/technologies/downloads/#java21) or an OpenJDK provider like [Adoptium](https://adoptium.net/temurin/releases/?version=21).\n    * Ensure `JAVA_HOME` is set up correctly and `java --version` shows Java 21.\n\n* **Apache Maven**\n    * This project uses Maven for dependency management and building.\n    * You can download Maven from the [Apache Maven Project](https://maven.apache.org/download.cgi).\n    * Ensure Maven is installed and accessible from your command line (`mvn -v`).\n    ```sh\n    # Example: Check Maven version\n    mvn -v\n    ```\n\n* **PostgreSQL Database**\n    * This application uses PostgreSQL as its database.\n    * Ensure you have a running PostgreSQL instance. You can download it from [postgresql.org](https://www.postgresql.org/download/).\n    * You will also need to create a database and configure the connection details in `src/main/resources/application.properties` as shown in the Installation section.\n    ```sh\n    # Example for checking if PostgreSQL is running (Linux/macOS using psql)\n    psql -U your_username -d your_database_name\n    ```\n\n### Installation\n\n_Follow these steps to install and set up the Mercury API._\n\n1.  **Clone the repository**\n    ```sh\n    git clone https://github.com/sergej-stk/mercury.git\n    cd mercury\n    ```\n\n2.  **Build the project with Maven**\n    This command will download dependencies, compile the code, and package the application.\n    ```sh\n    mvn clean install\n    ```\n    This will create a `.jar` file in the `target` directory (e.g., `target/mercury-0.0.1-SNAPSHOT.jar`).\n\n3.  **(Optional) Configure your application**\n    If your application requires specific configurations (e.g., database credentials, external API keys), you might need to update the `src/main/resources/application.properties` file.\n    ```properties\n    # Example: src/main/resources/application.properties\n    # server.port=8080\n    # spring.datasource.url=your_database_url\n    ```\n    \n### Running the Application\n\nOnce the project is built, you can run the Spring Boot application using Maven:\n\n```sh\nmvn spring-boot:run\n```\n\nOpen Swagger:\nhttp://localhost:8080/swagger-ui/index.html#/\n\n## Contributing\n\nContributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\nIf you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag \"enhancement\".\nDon't forget to give the project a star! Thanks again!\n\n\n### Top contributors:\n\n\u003ca href=\"https://github.com/sergej-stk/mercury/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=sergej-stk/mercury\" alt=\"contrib.rocks image\" /\u003e\n\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsergej-stk%2Fmercury","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsergej-stk%2Fmercury","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsergej-stk%2Fmercury/lists"}