{"id":13818969,"url":"https://github.com/rohitpaulk/todoist-tribute","last_synced_at":"2025-07-03T07:38:32.736Z","repository":{"id":37923872,"uuid":"97417474","full_name":"rohitpaulk/todoist-tribute","owner":"rohitpaulk","description":":white_check_mark: Todoist clone, written in Rails + Vue","archived":false,"fork":false,"pushed_at":"2023-03-16T09:58:45.000Z","size":8048,"stargazers_count":226,"open_issues_count":11,"forks_count":25,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-06-28T12:09:38.661Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://thetuduapp.herokuapp.com/","language":"TypeScript","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/rohitpaulk.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}},"created_at":"2017-07-16T23:32:50.000Z","updated_at":"2025-04-09T16:53:09.000Z","dependencies_parsed_at":"2024-01-07T10:50:46.831Z","dependency_job_id":"43a6ea95-d730-4bce-9cb5-7f352c893c09","html_url":"https://github.com/rohitpaulk/todoist-tribute","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rohitpaulk/todoist-tribute","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohitpaulk%2Ftodoist-tribute","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohitpaulk%2Ftodoist-tribute/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohitpaulk%2Ftodoist-tribute/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohitpaulk%2Ftodoist-tribute/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rohitpaulk","download_url":"https://codeload.github.com/rohitpaulk/todoist-tribute/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohitpaulk%2Ftodoist-tribute/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263284386,"owners_count":23442532,"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-08-04T08:00:36.588Z","updated_at":"2025-07-03T07:38:32.708Z","avatar_url":"https://github.com/rohitpaulk.png","language":"TypeScript","funding_links":[],"categories":["Happy Exploring 🤘"],"sub_categories":[],"readme":"\u003e Imitation is the sincerest form of flattery.\n\nThis is a clone of the [Todoist](https://todoist.com/) web-app.\n\nHere's how it looks:\n\n![](/app/assets/images/week3.gif)\n\nVisit [a live instance](http://thetuduapp.herokuapp.com/) to check it out!\n\nYou can also deploy your own copy to heroku:\n\n[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/rohitpaulk/todoist-tribute)\n\n### Installing locally\n\nThis is a standard [Rails](https://github.com/rails/rails) app, using [webpacker](https://github.com/rails/webpacker) to manage JS modules.\n\nYou'll need [Ruby](https://www.ruby-lang.org/en/), [bundler](http://bundler.io/), [yarn](https://yarnpkg.com/en/) and [Postgres](https://www.postgresql.org/) installed. All the following steps are to be executed in the root directory of this repository.\n\n- Run `bundle install` to install the required Rubygems\n- Run `yarn install` to install the required NPM packages\n- Run `createdb tudu_development` to create a development database\n- Run `rake db:migrate db:seed` to create database schema and sample records\n- Run `rails s` to spin up the Rails dev server\n- Run `./bin/webpack-dev-server` to spin up the webpack dev server\n\nHit [localhost:3000](http://localhost:3000/) and you should be ready to go!\n\n### Running tests\n\n- Run `createdb tudu_testing` to create a testing database\n- Run `rake test` to run Ruby tests\n- Run `yarn test` to run JS tests\n\n### Under the hood\n\nThe backend is written in [Ruby](https://www.ruby-lang.org/en/) + [Rails](https://github.com/rails/rails), and the frontend in [Typescript](https://www.typescriptlang.org/) + [Vue.js](https://vuejs.org/).\n\nA few interesting files to look at:\n\n- [editor_nodes.ts]( https://github.com/rohitpaulk/todoist-tribute/blob/master/app/javascript/packs/helpers/editor_nodes.ts)\n\n### Current Status\n\n- [ ] Tasks\n  - [x] Creating tasks\n  - [x] Editing tasks\n  - [x] Completing tasks\n  - [x] Re-ordering tasks\n  - [ ] Nested/indented tasks\n- [x] Projects\n  - [x] Switching between project views\n  - [x] Creating projects\n  - [x] Editing projects\n  - [x] Re-ordering projects\n  - [x] Deleting projects\n  - [x] Color picker\n- [x] Labels\n  - [x] Creating labels\n  - [x] Editing labels\n  - [x] Viewing tasks for a label\n  - [x] Rendering labels in task-item\n  - [x] Assigning labels via task-editor\n- [ ] Priorities\n- [ ] Due dates\n- [ ] Filters\n- [ ] Karma\n- [ ] Keyboard Shortcuts\n    - [ ] Task List\n      - [x] `a` to open editor at bottom of list\n      - [ ] `A` to open editor at top of list\n    - [ ] Task Editor\n      - [x] `Enter` to create new task and open editor below\n      - [x] `Esc` to cancel\n      - [ ] `Shift + Enter` to save and create new one below\n      - [ ] `Ctrl + Enter` to save and create new one above\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frohitpaulk%2Ftodoist-tribute","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frohitpaulk%2Ftodoist-tribute","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frohitpaulk%2Ftodoist-tribute/lists"}