{"id":22128439,"url":"https://github.com/michaelradu/actixwebtaskservice","last_synced_at":"2025-03-24T08:42:29.606Z","repository":{"id":170135803,"uuid":"482470969","full_name":"michaelradu/ActixWebTaskService","owner":"michaelradu","description":"A simple task management web service built with Actix Web and AWS DynamoDB.","archived":false,"fork":false,"pushed_at":"2022-04-17T10:07:53.000Z","size":29,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-29T14:15:58.558Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/michaelradu.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}},"created_at":"2022-04-17T08:42:47.000Z","updated_at":"2023-03-04T01:54:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"b5d86731-6b26-44a0-8947-7a1ecaeb9f70","html_url":"https://github.com/michaelradu/ActixWebTaskService","commit_stats":null,"previous_names":["michaelradu/actixwebtaskservice"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelradu%2FActixWebTaskService","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelradu%2FActixWebTaskService/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelradu%2FActixWebTaskService/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelradu%2FActixWebTaskService/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michaelradu","download_url":"https://codeload.github.com/michaelradu/ActixWebTaskService/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245240052,"owners_count":20583098,"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-01T17:43:24.799Z","updated_at":"2025-03-24T08:42:29.569Z","avatar_url":"https://github.com/michaelradu.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ActixWeb Task Service\n\n[![Stargazers][stars-shield]][stars-url]\n[![Forks][forks-shield]][forks-url]\n[![Contributors][contributors-shield]][contributors-url]\n[![Issues][issues-shield]][issues-url]\n[![MIT License][license-shield]][license-url]\n\nThis is a simple task management web service built with [Actix Web](https://actix.rs/) and [AWS DynamoDB](https://aws.amazon.com/dynamodb/).\n\nCheck out the documentation below to get started.\n\nFeature request? Check the past discussions to see if it has been brought up previously. Otherwise, feel free to start a new discussion thread. All ideas are welcomed!\n\n## Quick Start Guide\n\n1. Clone the repo\n\n```\ngit clone https://github.com/michaelradu/ActixWebTaskService.git\n```\n\n2. Add your aws_config to your environment variables\n3. Build the project\n\n```\ncargo build\n```\n\n4. Run the project\n\n```\nsudo cargo run\n```\n\n5. Test its functionality with tools such as `postman`\n\n## Usage\n\n1. Create tasks\n\n```\nPOST http://127.0.0.1/task\n```\n\nwith the following body\n\n```json\n{\n    \"user_id\": \"randomuuid\",\n    \"task_type\": \"Your_task_type\",\n    \"source_file\": \"your_file\"\n}\n```\n\n2. Get tasks\n\n```\nGET http://127.0.0.1/task/taskid \n```\n\n3. Start a task\n\n```\nPUT http://127.0.0.1/task/taskid/start\n```\n\n4. Pause a task\n\n```\nPUT http://127.0.0.1/task/taskid/pause\n```\n\n5. Complete a task\n\n```\nPUT http://127.0.0.1/task/taskid/complete\n```\n\nwith the following body\n\n```json\n{\n    \"result_file\": \"your_file\"\n}\n```\n\n6. Fail a task\n\n```\nPUT http://127.0.0.1/task/taskid/fail\n```\n\nand more...\n\n## Licence\n\n[GPLv3](michaelradu/ActixWebTaskService/LICENSE) © [Michael Radu](https://www.mihairadu.cf)\n\n\n\n\u003c!-- MARKDOWN LINKS \u0026 IMAGES --\u003e\n\u003c!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --\u003e\n[contributors-shield]: https://img.shields.io/github/contributors/michaelradu/ActixWebTaskService.svg?style=social\n[contributors-url]: https://github.com/michaelradu/ActixWebTaskService/graphs/contributors\n[forks-shield]: https://img.shields.io/github/forks/michaelradu/ActixWebTaskService.svg?style=social\n[forks-url]: https://github.com/michaelradu/ActixWebTaskService/network/members\n[stars-shield]: https://img.shields.io/github/stars/michaelradu/ActixWebTaskService.svg?style=social\n[stars-url]: https://github.com/michaelradu/ActixWebTaskService/stargazers\n[issues-shield]: https://img.shields.io/github/issues/michaelradu/ActixWebTaskService.svg?style=social\n[issues-url]: https://github.com/michaelradu/ActixWebTaskService/issues\n[license-shield]: https://img.shields.io/github/license/michaelradu/ActixWebTaskService.svg?style=social\n[license-url]: https://github.com/michaelradu/ActixWebTaskService/blob/master/LICENSE","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelradu%2Factixwebtaskservice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaelradu%2Factixwebtaskservice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelradu%2Factixwebtaskservice/lists"}