{"id":15612118,"url":"https://github.com/fabianoleittes/todo-api","last_synced_at":"2026-04-29T18:33:40.083Z","repository":{"id":138306210,"uuid":"173624370","full_name":"fabianoleittes/todo-api","owner":"fabianoleittes","description":"RESTful JSON API with Rails 5 and JWT","archived":false,"fork":false,"pushed_at":"2019-03-29T22:12:26.000Z","size":73,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-29T15:12:31.640Z","etag":null,"topics":["jwt","jwt-tokens","rails-api","rails5","restful-api","todo"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/fabianoleittes.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":"2019-03-03T20:11:08.000Z","updated_at":"2020-01-04T18:18:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"9cbbebdc-3b52-452c-ac84-f32e1f4860fc","html_url":"https://github.com/fabianoleittes/todo-api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fabianoleittes/todo-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabianoleittes%2Ftodo-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabianoleittes%2Ftodo-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabianoleittes%2Ftodo-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabianoleittes%2Ftodo-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fabianoleittes","download_url":"https://codeload.github.com/fabianoleittes/todo-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabianoleittes%2Ftodo-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32439179,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T18:12:22.909Z","status":"ssl_error","status_checked_at":"2026-04-29T18:11:33.322Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["jwt","jwt-tokens","rails-api","rails5","restful-api","todo"],"created_at":"2024-10-03T06:21:56.249Z","updated_at":"2026-04-29T18:33:40.068Z","avatar_url":"https://github.com/fabianoleittes.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Maintainability](https://api.codeclimate.com/v1/badges/fda72ff60e3468ed28a4/maintainability)](https://codeclimate.com/github/fabianoleittes/todo-api/maintainability)\n\n# TODO API\n\n## Getting Started\n\n### Option 1: Install dependencies\n\nAfter you have cloned this repo, run this setup script to set up your machine\nwith the necessary dependencies to run and test this app:\n\n    $ ./bin/setup\n\nIt assumes you have a machine equipped with Ruby, Postgres, etc. If not, set up\nyour machine with [this script].\n\n[this script]: https://github.com/thoughtbot/laptop\n\n### Option 2: Run Docker container\nAfter you have cloned this repo, install [Docker] and [Docker Compose], and then run:\n\n    $ docker-compose build\n    $ docker-compose up\n\n[Docker]: https://docs.docker.com/engine/installation/\n[Docker Compose]: https://docs.docker.com/compose/install/\n\n### Heroku Setup\nAfter setting up, you can run the application using [Heroku Local]:\n\n    $ heroku local\n\n[Heroku Local]: https://devcenter.heroku.com/articles/heroku-local\n\n### API\n\n### What's included\n\n### Features\n\nWhat's in Version V1\n\n- [x] RESTful API\n- [x] JSON Schema implementation\n- [x] RSpec testing\n- [x] Setup scripts\n- [x] Usage of http methods/verbs\n- [x] Structured endpoints\n- [x] Return appropriate status code\n- [x] JWT Token Based Authentication\n- [x] Create users\n- [x] Create todos\n- [x] Create items\n- [x] API versioning\n\n\nURL / ENDPOINT    |    VERB    |    DESCRIPTION   \n----------------- | ---------- | -------------- \n/v1/signup            |    POST    | Create user\n/v1/auth/login       |    POST    | Generate token      \n/v1/todos            |    POST     | Create todo\n/v1/todos |    GET     | Return all todos      \n/v1/todos/:id |    PUT     | Update todo\n/v1/todos/:id |    GET     | Show todo\n/v1/todos/:id |    PUT     | Destroy todo      \n/v1/todos/:id/items |   POST   | Create item\n/v1/todos/:id/items |    GET     | Return all items      \n/v1/todos/:id/items/:id |    PUT     | Update item\n/v1/todos/:id/items/:id |    GET     | Show item\n/v1/todos/:id/items/:id |    PUT     | Destroy item      \n\n## To run testing\n    $ bin/rspec\n\n## Deploying\n\nIf you have previously run the `./bin/setup` script,\nyou can deploy to staging and production with:\n\n    $ ./bin/deploy staging\n    $ ./bin/deploy production\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/fabianoleittes/todo-api. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.\n\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabianoleittes%2Ftodo-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffabianoleittes%2Ftodo-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabianoleittes%2Ftodo-api/lists"}