{"id":22266434,"url":"https://github.com/homemade-cookies/workday-integration-blazor","last_synced_at":"2025-03-25T14:22:55.416Z","repository":{"id":261657305,"uuid":"884960228","full_name":"Homemade-Cookies/workday-integration-blazor","owner":"Homemade-Cookies","description":"A repository for the Workday integration project using Blazor","archived":false,"fork":false,"pushed_at":"2024-11-07T19:19:07.000Z","size":31,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-03T10:18:44.069Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/Homemade-Cookies.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-11-07T17:38:40.000Z","updated_at":"2024-11-07T18:16:20.000Z","dependencies_parsed_at":"2024-11-07T18:46:42.966Z","dependency_job_id":"02321080-a775-4321-9a70-3d85b24c022c","html_url":"https://github.com/Homemade-Cookies/workday-integration-blazor","commit_stats":null,"previous_names":["homemade-cookies/workday-integration-blazor"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Homemade-Cookies%2Fworkday-integration-blazor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Homemade-Cookies%2Fworkday-integration-blazor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Homemade-Cookies%2Fworkday-integration-blazor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Homemade-Cookies%2Fworkday-integration-blazor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Homemade-Cookies","download_url":"https://codeload.github.com/Homemade-Cookies/workday-integration-blazor/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":236353165,"owners_count":19135501,"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-12-03T10:18:45.157Z","updated_at":"2025-01-30T13:14:04.538Z","avatar_url":"https://github.com/Homemade-Cookies.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Workday Integration Project\n\n## Project Description\n\nThis project is a basic CRUD (Create, Read, Update, Delete) application to manage a list of items. It includes a user interface to add, edit, and delete items, and stores the data in a local database. Additionally, it integrates with Workday to provide authentication, data synchronization, API integration, custom reports and dashboards, notifications and alerts, and data security and compliance.\n\n## Technology Stack\n\n- **MongoDB** 🍃: Used as the database to store the items.\n- **Express.js** 🚀: Used to create the backend server and handle API requests.\n- **Angular** 🅰️: Used to build the user interface for the application.\n- **Node.js** 🟢: Used as the runtime environment for the backend server.\n\n## Setup and Running the Project\n\n### Prerequisites\n\n- Node.js\n- MongoDB\n- Angular CLI\n\n### Backend Setup\n\n1. Navigate to the `backend` directory:\n   ```bash\n   cd backend\n   ```\n\n2. Install the dependencies:\n   ```bash\n   npm install\n   ```\n\n3. Start the server:\n   ```bash\n   npm start\n   ```\n\n### Frontend Setup\n\n1. Navigate to the `frontend` directory:\n   ```bash\n   cd frontend\n   ```\n\n2. Install the dependencies:\n   ```bash\n   npm install\n   ```\n\n3. Start the Angular development server:\n   ```bash\n   ng serve\n   ```\n\n4. Open your browser and navigate to `http://localhost:4200`.\n\n## Workday Integration Setup\n\n### Authentication and Authorization\n\n1. Set up Workday's OAuth 2.0 authentication to securely access Workday APIs.\n2. Ensure proper user roles and permissions are set up to control access to Workday data.\n\n### Data Synchronization\n\n1. Set up data synchronization between the application and Workday to keep data up-to-date.\n2. Implement periodic data refresh to ensure the latest information is available.\n\n### API Integration\n\n1. Utilize Workday's REST or SOAP APIs to fetch and update data.\n2. Implement error handling and logging for API requests to ensure reliability.\n\n### Custom Reports and Dashboards\n\n1. Create custom reports and dashboards using Workday data to provide insights to users.\n2. Allow users to filter and export data for further analysis.\n\n### Notifications and Alerts\n\n1. Set up notifications and alerts for important events or changes in Workday data.\n2. Implement email or in-app notifications to keep users informed.\n\n### Data Security and Compliance\n\n1. Ensure data security and compliance with relevant regulations (e.g., GDPR, HIPAA).\n2. Implement encryption and secure data storage to protect sensitive information.\n\n## CI/CD Setup\n\n### GitHub Actions\n\n1. The CI/CD pipeline is configured using GitHub Actions. The workflow file is located at `backend/.github/workflows/ci-cd.yml`.\n2. The pipeline includes steps for setting up Node.js, MongoDB, running tests, building, and deploying the backend and frontend.\n\n### Docker\n\n1. The project includes Dockerfiles and docker-compose files for containerization.\n2. To build and run the containers, navigate to the `backend` or `frontend` directory and run:\n   ```bash\n   docker-compose up --build\n   ```\n\n## Running Tests\n\n### Backend Tests\n\n1. Unit tests for backend routes are located in `backend/tests/items.test.js`.\n2. To run the backend tests, navigate to the `backend` directory and run:\n   ```bash\n   npm test\n   ```\n\n### Frontend Tests\n\n1. Playwright tests for frontend components are located in `frontend/tests/playwright.spec.ts`.\n2. To run the frontend tests, navigate to the `frontend` directory and run:\n   ```bash\n   npm test\n   ```\n\n## Deployment\n\n1. The CI/CD pipeline includes steps for deploying the application to a server.\n2. Ensure the deployment commands are properly configured in the GitHub Actions workflow file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhomemade-cookies%2Fworkday-integration-blazor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhomemade-cookies%2Fworkday-integration-blazor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhomemade-cookies%2Fworkday-integration-blazor/lists"}