{"id":30051410,"url":"https://github.com/subhadro/fullstack-assignment-for-kamiwaza","last_synced_at":"2026-02-08T09:03:34.103Z","repository":{"id":308229157,"uuid":"1032070298","full_name":"Subhadro/fullstack-assignment-for-Kamiwaza","owner":"Subhadro","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-04T20:47:12.000Z","size":264,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-04T22:20:47.084Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Blade","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/Subhadro.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,"zenodo":null}},"created_at":"2025-08-04T18:56:32.000Z","updated_at":"2025-08-04T20:47:15.000Z","dependencies_parsed_at":"2025-08-04T22:26:22.026Z","dependency_job_id":"c08da5aa-dc13-40ec-a567-3c0fd7eb81f6","html_url":"https://github.com/Subhadro/fullstack-assignment-for-Kamiwaza","commit_stats":null,"previous_names":["subhadro/fullstack-assignment-for-kamiwaza"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Subhadro/fullstack-assignment-for-Kamiwaza","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Subhadro%2Ffullstack-assignment-for-Kamiwaza","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Subhadro%2Ffullstack-assignment-for-Kamiwaza/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Subhadro%2Ffullstack-assignment-for-Kamiwaza/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Subhadro%2Ffullstack-assignment-for-Kamiwaza/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Subhadro","download_url":"https://codeload.github.com/Subhadro/fullstack-assignment-for-Kamiwaza/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Subhadro%2Ffullstack-assignment-for-Kamiwaza/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29225703,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T06:05:31.539Z","status":"ssl_error","status_checked_at":"2026-02-08T05:58:33.853Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2025-08-07T15:51:28.154Z","updated_at":"2026-02-08T09:03:34.099Z","avatar_url":"https://github.com/Subhadro.png","language":"Blade","funding_links":[],"categories":[],"sub_categories":[],"readme":"# User Management Dashboard – Fullstack Assignment\n\nThis project is a fullstack web application for managing users. It consists of:\n\n- **Frontend**: React (Vite + TailwindCSS)\n- **Backend**: Laravel REST API\n- **Database**: MySQL\n- **API Testing**: Postman Collection included\n\n---\n## API Reference\n\n#### Get all users\n\n```bash\n  GET http://127.0.0.1:8000/api/users\n```\n\n#### Get single user\n\n```bash\n  GET http://127.0.0.1:8000/api/users/${id}\n```\n\n| Parameter | Type     | Description                       |\n| :-------- | :------- | :-------------------------------- |\n| `id`      | `string` | **Required**. Id of item to fetch |\n\n#### Save user\n\n```bash\n  POST http://127.0.0.1:8000/api/users\n```\n\n#### Update user\n\n```bash\n  PUT http://127.0.0.1:8000/api/users/${id}\n```\n\n\n| Parameter | Type     | Description                       |\n| :-------- | :------- | :-------------------------------- |\n| `id`      | `string` | **Required**. Id of item to update |\n\n#### Delete user\n\n```bash\n  DELETE http://127.0.0.1:8000/api/users/${id}\n```\n\n\n| Parameter | Type     | Description                       |\n| :-------- | :------- | :-------------------------------- |\n| `id`      | `string` | **Required**. Id of item to delete |\n\n\n## Environment Variables\n\nEdit the .env file with your MySQL database credentials:\n\n`DB_DATABASE=your_db_name`\n\n`DB_USERNAME=your_username`\n\n`DB_PASSWORD=your_password`\n## Run Locally\n\nClone the project\n\n```bash\n  git clone https://github.com/Subhadro/fullstack-assignment-for-Kamiwaza.git\n```\nGo to the project directory\n```bash\n  cd fullstack-assignment-for-Kamiwaza\n```\nBackend – Laravel API\n\nNavigate to the backend directory\n```bash\ncd user-management-api\n```\n\nInstall dependencies\n\n```bash\n  composer install\n```\n\nEnvironment Setup\n\n```bash\n  cp .env.example .env\n  php artisan key:generate\n\n```\n\nMigrate and Seed Database\n```bash\nphp artisan migrate\n```\n Run the Server\n ```bash\nphp artisan serve\n\n```\nFrontend – React\n\n ```bash\ncd ../user-management-frontend\n\n```\n Install dependencies\n ```bash\nnpm install\n\n ```\n Run the Frontend\n ```bash\nnpm run start\n\n\n ```\n ## API Testing with Postman\n  ```bash\nuser-management-api/kamiwaza_assignment.postman_collection.json\n\n\n ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubhadro%2Ffullstack-assignment-for-kamiwaza","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsubhadro%2Ffullstack-assignment-for-kamiwaza","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubhadro%2Ffullstack-assignment-for-kamiwaza/lists"}