{"id":22887771,"url":"https://github.com/alexp11223/cattodo","last_synced_at":"2026-05-02T20:37:56.819Z","repository":{"id":80409972,"uuid":"176087802","full_name":"AlexP11223/CatToDo","owner":"AlexP11223","description":"🐱 A simple Laravel/Bootstrap ToDo app that shows a random cat image after completing a task","archived":false,"fork":false,"pushed_at":"2019-03-29T18:02:35.000Z","size":588,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-28T23:47:45.123Z","etag":null,"topics":["bootstrap","bootstrap4","heroku","laravel","php","responsive","swipe","todo","todoapp"],"latest_commit_sha":null,"homepage":"http://cattodo.herokuapp.com","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AlexP11223.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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-17T10:49:46.000Z","updated_at":"2023-11-17T08:15:42.000Z","dependencies_parsed_at":"2023-06-07T09:35:41.153Z","dependency_job_id":null,"html_url":"https://github.com/AlexP11223/CatToDo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AlexP11223/CatToDo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexP11223%2FCatToDo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexP11223%2FCatToDo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexP11223%2FCatToDo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexP11223%2FCatToDo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlexP11223","download_url":"https://codeload.github.com/AlexP11223/CatToDo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexP11223%2FCatToDo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32549384,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T19:18:06.202Z","status":"ssl_error","status_checked_at":"2026-05-02T19:16:21.335Z","response_time":132,"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":["bootstrap","bootstrap4","heroku","laravel","php","responsive","swipe","todo","todoapp"],"created_at":"2024-12-13T20:38:27.403Z","updated_at":"2026-05-02T20:37:51.803Z","avatar_url":"https://github.com/AlexP11223.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"A simple ToDo app that shows [a random cat image](https://thecatapi.com/) after completing a task.\n\nhttp://cattodo.herokuapp.com\n\nImplemented using Laravel, Bootstrap.\n\nFeatures:\n\n- Shows random cat images when a task is marked as completed. 🐱\n- Responsive UI, works fine on desktops and mobile.\n- Swipe tasks on mobile instead of pressing the checkbox ([hammer.js](http://hammerjs.github.io/)).\n- Categories (no custom categories yet).\n- Add task to a category or without any categories.\n- Update, delete tasks.\n\n![](https://i.imgur.com/UIeB445.png)\n\n![](https://i.imgur.com/H6o6EPv.png)\n\n# Development setup\n\nFor development you can use Homestead virtual machine (via Vagrant) instead of manually installing all needed tools (PHP, web server, NPM, ...).\n\n 1. Install [VirtualBox](https://www.virtualbox.org/wiki/Downloads) and [Vagrant](https://www.vagrantup.com/downloads.html).\n 2. Install PHP (just [interpreter](http://php.net/downloads.php), server not needed) and [Composer](https://getcomposer.org/download/). Go to the project root, run `composer install` and `php vendor/bin/homestead make` (for Windows `vendor\\\\bin\\\\homestead make`), this will generate configuration file, **Homestead.yaml**.\n  - Alternatively, you can follow Laravel Homestead documentation to install Homestead globally, it should not require PHP. https://laravel.com/docs/5.8/homestead\n 3. Add `cattodo` and `cattodo-test` databases to **Homestead.yaml**.\n\n     ```\n     databases:\n         - cattodo\n         - cattodo-test\n     ```\n 4. Run `vagrant up`, this should download, configure and launch the virtual machine. Follow Laravel Homestead and Vagrant documentation if it fails. On Windows you may need to run it from admin cmd to avoid issues with symlinks (e.g. when installing npm packages).\n 5. Use `vagrant ssh` to connect into it.\n 6. Run `make env` to create `.env` file and generate `APP_KEY`.\n 7. Run `make install` from the project dir in Vagrant (`cd code` by default) to install packages and run database migrations, build frontend.\n 8. Add the IP and domain from **Homestead.yaml** to your **hosts** file, e.g. `192.168.10.10  cattodo.test`.\n 9. Open http://cattodo.test in your web browser.\n\nSee **Makefile** for other common tasks.\n\n# Heroku deployment\n\n0. Register an account (free), install Heroku CLI, login, etc. https://devcenter.heroku.com/articles/getting-started-with-php\n1. `heroku create`\n2. \n```\nheroku buildpacks:add heroku/php\nheroku buildpacks:add heroku/nodejs\n```\n3. `heroku addons:create heroku-postgresql:hobby-dev`\n4. \n```\nphp artisan key:generate --show\nheroku config:set APP_KEY = \u003ckey generated above\u003e\n```\n5. `heroku config:set LOG_CHANNEL=single`\n6. `heroku config:set CAT_API_KEY=\u003ckey from https://thecatapi.com (free)\u003e`\n7. `git push heroku master`\n8. `heroku run php artisan db:seed --force`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexp11223%2Fcattodo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexp11223%2Fcattodo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexp11223%2Fcattodo/lists"}