{"id":22369331,"url":"https://github.com/nishantbharali/oralce-cerner-api","last_synced_at":"2026-04-10T11:32:13.348Z","repository":{"id":41875846,"uuid":"470054001","full_name":"NishantBharali/Oralce-Cerner-API","owner":"NishantBharali","description":"An API for an idea portal (C.R.U.D. Application) application where a user can add, view, update and delete his/her own ideas as per their requirement with user authentication and authorization.","archived":false,"fork":false,"pushed_at":"2024-03-22T11:24:13.000Z","size":713,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-09T09:19:38.514Z","etag":null,"topics":["fullstack-development","java-8","jest","junit5","mysql","reactjs","redux","redux-saga","spring-boot"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/NishantBharali.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":"2022-03-15T07:42:54.000Z","updated_at":"2023-12-07T08:10:55.000Z","dependencies_parsed_at":"2025-03-26T16:20:57.532Z","dependency_job_id":"6141c8d8-475c-4454-88eb-be690de80349","html_url":"https://github.com/NishantBharali/Oralce-Cerner-API","commit_stats":null,"previous_names":["nishantbharali/oralce-cerner-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/NishantBharali/Oralce-Cerner-API","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NishantBharali%2FOralce-Cerner-API","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NishantBharali%2FOralce-Cerner-API/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NishantBharali%2FOralce-Cerner-API/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NishantBharali%2FOralce-Cerner-API/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NishantBharali","download_url":"https://codeload.github.com/NishantBharali/Oralce-Cerner-API/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NishantBharali%2FOralce-Cerner-API/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31641114,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["fullstack-development","java-8","jest","junit5","mysql","reactjs","redux","redux-saga","spring-boot"],"created_at":"2024-12-04T19:19:54.502Z","updated_at":"2026-04-10T11:32:13.333Z","avatar_url":"https://github.com/NishantBharali.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Idea-Repository - API\nAn API for C.R.U.D. operations application where a user can add, view, update and delete his/her own ideas as per project requirements and criticality with user authentication and authorization, made for a project component to replicate the features of JIRA, a root cause analysis platform.\n\n# About\nA full-stack, end-to-end web application: Ideas Repository will act as a central hub for any user to quickly jot down any project idea they have and define criticality by assigning issues levels of urgency.\n\n# React + Springboot + MySQL\nThis project is an integration of Springboot, MySQL database and React app. Semantics-UI and Bootstrap have been implemented for the UI enhancement.\n\n# Functionalities\nThe project is aimed to develop an app where the user will be able to login, save their credentials with autofill with permission, reset information and have the ability to add/delete/update/edit project details.\n\n# Requirements\n1. Have maven installed and mvn added to path.\n2. Have an instance of mysql server, prefereably running on localhost:3306\n\n# Running the code\n1. Import the project from github\n2. Open the application.properties file and modify the database user, password and url as needed.\n3. In the project directory, open terminal and run the command mvn clean package\n4. goto the target directory which must now contain a JAR file.\n5. Run the jar file using java -jar filename.jar\n6. Open Java doc Documentation folder for a doc for all important classes and methods.\n7. Open Jenkinsfile to use pipeline groovy scripts to build, test and deploy the project (both backend and frontend).\n\nJWT for Authentication and Authorization  \n===========================================\nOn successful login, clinet recieves a JWT token included 'Authorization' header from server and sets that token up in the local storage. On subsequent requests, this token has been sent back to server as an 'Authorization' header and validated for authorization.On logout, this token is removed from local storage. \n\nRegistration Credentials Format\n=========================\nemail: xyz@domain.com\n\npassword: PAssword@001 (Minimum 8 characters, One uppercase letter, One special character and one numeral are the minimum requirements)\n\nconfirm password: PAssword@001 (should match with the password above)\n\nLogin Credentials Format\n=========================\nusername: \"xyz@domain.com\"\n\npassword: PAssword@001\n\nDescription\n====================\n* UI is a react app in Javascript making asynchronous ajax calls to REST APIs using React-Redux and Redux-Saga. \n* API is a spring boot REST API fetching data from a MySQL database table through JPA (Hibernate) repository.\n\nDeveloped Using\n===================\n\u003cpre\u003e\n* React - A JavaScript library for building user interfaces\n* Semantic UI - Semantic is a development framework that helps create beautiful, responsive layouts using human-friendly HTML.\n* Maven - Dependency Management\n* ES6 – The next version of JavaScript. Allows us to write real JavaScript classes.\n* JSX – Allows us to place HTML in JavaScript without concatenating strings.\n* Webpack – Allows us to pack all of our JavaScript files into one bundle\n* Springboot - RESTful Spring Boot Microservices with Spring Data JPA (Spring Data REST)\n* Hibernate - JPA provider\n* MySQL - Database\n* JWT – For token based user authentication and authorization\n\u003c/pre\u003e\n\nPrerequisites\n=================\n\u003cpre\u003e\n* Install node \n* Install npm \n* Install Java (jdk 1.8 is preferred)\n* Install Maven 3.x\n* Install Eclipse or Spring Tool Suite\n* Install Visual Studio Code\n\u003c/pre\u003e\nNotes\n============\n * I created this React app named **experiment** using \u003ccode\u003ecreate-react-app\u003c/code\u003e. In the case of create-react-app, you can either install it globally (i.e. \u003ccode\u003e $ npm install -g create-react-app \u003c/code\u003e) or install it locally (i.e. \u003ccode\u003e$ npm install create-react-app \u003c/code\u003e). If you choose the latter, you will have to specify its path whenever you invoke it (e.g. path/to/node_modules/.bin/create-react-app). \n \n * Check Installed Versions\n \n    Node: \u003ccode\u003e$ node --version\n    v16.14.2 \u003c/code\u003e\n              \n    NPM: \u003ccode\u003e$ npm  --version\n    8.5.0\u003c/code\u003e\n              \n    Create React App: \u003ccode\u003e$ create-react-app  --version \n    5.0.0\u003c/code\u003e\n \n\nQuick Development Setup\n=======================\n\u003cpre\u003e\n* git clone https://github.training.cerner.com/DevCenter/Ideas-Repository\n=======\n* git clone https://github.com/NishantBharali/projects\n* Import as maven project in eclipse or sts. Run springboot application on embedded Tomcat server localhost:8090. \n* Create database:\n  Create **experiment** named database on MySQL on localhost:3306.\n  Then set _**spring.jpa.hibernate.ddl-auto = create**_ in src/main/resources/application.properties in the springboot application.\n  Once the database tables are created, set it to the value **udate**\n* Run npm install and then npm start in VSCode command line\n* Hit http://localhost:3000/\n* You can now view experiment in the browser proxying request /login from http://localhost:3000 to          http://localhost:8080/ \n\u003c/pre\u003e \n\nVersions \n======================\n\u003cpre\u003e\n* Node: 16.14.2\n* NPM:  8.5.0\n* Create React App: 5.0.0\n* Spring Boot: 2.6.4 RELEASE\n* React: 17.0.2\n* Maven:\n=======\n* Maven: 3.8.5\n\u003c/pre\u003e\n\nDeployment\n======================\n\n* API\n\n\u003cpre\u003eRun \u003ccode\u003emvn clean install\u003c/code\u003e to generate a WAR file deployable in any servlet containers like Tomcat. \u003c/pre\u003e\n\n* UI\n\n\u003cpre\u003eRun \u003ccode\u003enpm run build\u003c/code\u003e\u003c/pre\u003e\n \n It builds the app for production to the build folder.\n It correctly bundles React in production mode and optimizes the build for the best performance.\n The build is minified and the filenames include the hashes.\n Your app is ready to be deployed!\n \n \u003cpre\u003eStart \u003ccode\u003enpm start\u003c/code\u003e\u003c/pre\u003e\n It starts the development server in the browser.\n \n \u003c/pre\u003e\n \n\nAuthor \n===================\nNishant Kumar Bharali, NB097260\n\nNote: Everything is tested on Windows environment\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnishantbharali%2Foralce-cerner-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnishantbharali%2Foralce-cerner-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnishantbharali%2Foralce-cerner-api/lists"}