{"id":17810749,"url":"https://github.com/favourdaniel/java_boiler_plate","last_synced_at":"2026-01-21T16:32:46.997Z","repository":{"id":249175568,"uuid":"830640414","full_name":"FavourDaniel/java_boiler_plate","owner":"FavourDaniel","description":null,"archived":false,"fork":false,"pushed_at":"2024-07-20T00:02:24.000Z","size":46,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T17:54:35.313Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FavourDaniel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-07-18T17:05:25.000Z","updated_at":"2024-07-18T19:23:10.000Z","dependencies_parsed_at":"2024-10-27T16:12:33.724Z","dependency_job_id":null,"html_url":"https://github.com/FavourDaniel/java_boiler_plate","commit_stats":null,"previous_names":["favourdaniel/java_boiler_plate"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FavourDaniel%2Fjava_boiler_plate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FavourDaniel%2Fjava_boiler_plate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FavourDaniel%2Fjava_boiler_plate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FavourDaniel%2Fjava_boiler_plate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FavourDaniel","download_url":"https://codeload.github.com/FavourDaniel/java_boiler_plate/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247678254,"owners_count":20977818,"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":[],"created_at":"2024-10-27T15:40:13.046Z","updated_at":"2026-01-21T16:32:46.955Z","avatar_url":"https://github.com/FavourDaniel.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [App Name] Integration Guide\n\n## Overview\n\n[Description]\n\n## Folder Structure\n\n```\n|--- .mvn\n|--- src\n|    |--- main\n|         |--- java\n|             |---hng_java_boilerplate\n|                 |---\u003cfeature implementations\u003e\n|                 |---Program.java\n|             |---utils\n|         |--- resources\n|             |--- static\n|             |--- templates\n|             |--- application.properties\n|    |--- test\n|         |--- java\n|             |---hng_java_boilerplate\n|                 |---\u003cimplementations tests\u003e\n|--- .gitignore\n|--- mvnw\n|--- mvnw.cmd\n|--- README.md\n```\n\n## Getting started\n\nEnsure you have your computer setup correctly for development by installing the following\n\n- Java 17 or higher\n- Install Java SDK/JDK\n- Use your favourite IDE or Text editor\n\n## Contribution Guide\n\n#### If you don't have git on your machine, [install it](https://docs.github.com/en/get-started/quickstart/set-up-git).\n\n## Fork this repository\n\nFork this repository by clicking on the fork button on the top of this page.\nThis will create a copy of this repository in your account.\n\n## Clone the repository\n\n\u003cimg align=\"right\" width=\"300\" src=\"https://firstcontributions.github.io/assets/Readme/clone.png\" alt=\"clone this repository\" /\u003e\n\nNow clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the _copy to clipboard_ icon.\n\nOpen a terminal and run the following git command:\n\n```bash\ngit clone \"url you just copied\"\n```\n\nwhere \"url you just copied\" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.\n\n\u003cimg align=\"right\" width=\"300\" src=\"https://firstcontributions.github.io/assets/Readme/copy-to-clipboard.png\" alt=\"copy URL to clipboard\" /\u003e\n\nFor example:\n\n```bash\ngit clone git@github.com:this-is-you/hng_project.git\n```\n\nwhere `this-is-you` is your GitHub username. Here you're copying the contents of the first-contributions repository on GitHub to your computer.\n\n## Create a branch\n\nChange to the repository directory on your computer (if you are not already there):\n\n```bash\ncd hng_project\n```\n\nNow create a branch using the `git switch` command:\n\n```bash\ngit switch -c your-new-branch-name\n```\n\nFor example:\n\n```bash\ngit switch -c add-alonzo-church\n```\n\n### Make Changes\n\nMake your changes to the codebase. Ensure your code follows the project's coding standards and guidelines.\n\n### Run Tests\n\nRun the existing tests to ensure your changes do not break anything. If you added new functionality, write corresponding tests and run them.\n\n## commit those changes\n\nNow open `Contributors.md` file in a text editor, add your name to it. Don't add it at the beginning or end of the file. Put it anywhere in between. Now, save the file.\n\n\u003cimg align=\"right\" width=\"450\" src=\"https://firstcontributions.github.io/assets/Readme/git-status.png\" alt=\"git status\" /\u003e\n\nIf you go to the project directory and execute the command `git status`, you'll see there are changes.\n\nAdd those changes to the branch you just created using the `git add` command:\n\n## Push changes to GitHub\n\nPush your changes using the command `git push`:\n\n```bash\ngit push -u origin your-branch-name\n```\n\nreplacing `your-branch-name` with the name of the branch you created earlier.\n\n\u003cdetails\u003e\n\u003csummary\u003e \u003cstrong\u003eIf you get any errors while pushing, click here:\u003c/strong\u003e \u003c/summary\u003e\n\n- ### Authentication Error\n     \u003cpre\u003eremote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.\n  remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.\n  fatal: Authentication failed for 'https://github.com/\u003cyour-username\u003e/first-contributions.git/'\u003c/pre\u003e\n  Go to [GitHub's tutorial](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) on generating and configuring an SSH key to your account.\n\n\u003c/details\u003e\n\n## Submit your changes for review into Staging\n\nIf you go to your repository on GitHub, you'll see a `Compare \u0026 pull request` button. Click on that button.\n\n\u003cimg style=\"float: right;\" src=\"https://firstcontributions.github.io/assets/Readme/compare-and-pull.png\" alt=\"create a pull request\" /\u003e\n\nNow submit the pull request.\n\n\u003cimg style=\"float: right;\" src=\"https://firstcontributions.github.io/assets/Readme/submit-pull-request.png\" alt=\"submit pull request\" /\u003e\n\nSoon your changes will be merged into the staging branch of this project. You will get a notification email once the changes have been merged.\n\n## Setup Instructions\n\n### 1. Clone the Repository\n\nFirst, clone the repository to your local machine using Git.\n\n```sh\ngit clone https://github.com/your-username/[app-name].git\ncd [app-name]\n```\n\n### 2. Install Dependencies\n\nOpening the project in your dev environemnt should automatically restore all your dependencies.\nYou can also install dependencies by running the following `mavin` command in your root folder.\n\n```sh\nmvn dependency:resolve\n```\n\n### 3. Run the Development Server\n\nPress `F5` on your keyboard to run the application in debug mode for your Vscode or use whatever your IDE requires (You may need to open a .java file to trigger this).\n\n### 4. Verify the Setup\n\nDepending on the IDE/code editor, you should be greeted with a Hello world text when you navigate to `localhost:8080`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffavourdaniel%2Fjava_boiler_plate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffavourdaniel%2Fjava_boiler_plate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffavourdaniel%2Fjava_boiler_plate/lists"}