{"id":16639051,"url":"https://github.com/jakepartusch/cafe-todo-app","last_synced_at":"2025-07-31T16:11:54.870Z","repository":{"id":77011940,"uuid":"63905146","full_name":"JakePartusch/cafe-todo-app","owner":"JakePartusch","description":"Todo app for the Mammel Hall Cafe","archived":false,"fork":false,"pushed_at":"2016-08-05T04:18:08.000Z","size":57,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-12T02:38:38.084Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://cafe-todo-app.firebaseapp.com/open","language":"JavaScript","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/JakePartusch.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":"2016-07-21T22:01:14.000Z","updated_at":"2025-02-20T18:21:58.000Z","dependencies_parsed_at":"2023-03-11T23:52:51.883Z","dependency_job_id":null,"html_url":"https://github.com/JakePartusch/cafe-todo-app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JakePartusch/cafe-todo-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JakePartusch%2Fcafe-todo-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JakePartusch%2Fcafe-todo-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JakePartusch%2Fcafe-todo-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JakePartusch%2Fcafe-todo-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JakePartusch","download_url":"https://codeload.github.com/JakePartusch/cafe-todo-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JakePartusch%2Fcafe-todo-app/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268068990,"owners_count":24190649,"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","status":"online","status_checked_at":"2025-07-31T02:00:08.723Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2024-10-12T07:04:59.589Z","updated_at":"2025-07-31T16:11:54.862Z","avatar_url":"https://github.com/JakePartusch.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CircleCI](https://circleci.com/gh/r-park/todo-react-redux.svg?style=shield\u0026circle-token=6caf8c493bd66544717ff9a47ae01d8be036e53c)](https://circleci.com/gh/r-park/todo-react-redux)\n\n\n# Todo app with React, Redux, and Firebase\nA simple Todo app example with **undelete** capability — built with React, Redux, and Firebase.\n\nTry the demo at https://todo-react-redux.firebaseapp.com. \n\nA version of this app built with [redux-saga middleware](https://github.com/yelouafi/redux-saga) is available [here](https://github.com/r-park/todo-redux-saga).\n\n\n## Stack\n\n- React\n- React-Hot-Loader `3.0.0-beta.2`\n- React-Redux\n- React-Router\n- React-Router-Redux\n- Redux\n- Redux-Thunk\n- Redux-Devtools-Extension for Chrome\n- Firebase SDK 3 with OAuth authentication\n- Babel\n- Immutable\n- Reselect\n- SASS\n- Webpack\n\n\nQuick Start\n-----------\n\n```shell\n$ git clone https://github.com/r-park/todo-react-redux.git\n$ cd todo-react-redux\n$ npm install\n$ npm start\n```\n\n## Deploying to Firebase\n#### Prerequisites:\n- Create a free Firebase account at https://firebase.google.com\n- Create a project from your [Firebase account console](https://console.firebase.google.com)\n- Configure the authentication providers for your Firebase project from your Firebase account console\n\n#### Configure this app with your project-specific details:\n```javascript\n// .firebaserc\n\n{\n  \"projects\": {\n    \"default\": \"your-project-id\"\n  }\n}\n```\n```javascript\n// src/core/firebase/config.js\n\nexport const firebaseConfig = {\n  apiKey: 'your api key',\n  authDomain: 'your-project-id.firebaseapp.com',\n  databaseURL: 'https://your-project-id.firebaseio.com',\n  storageBucket: 'your-project-id.appspot.com'\n};\n```\n\n#### Install firebase-tools:\n```shell\n$ npm install -g firebase-tools\n```\n\n#### Build and deploy the app:\n```shell\n$ npm run build\n$ firebase login\n$ firebase use default\n$ firebase deploy\n```\n\n\nNPM Command Summary\n-------------------\n\n|Script|Description|\n|---|---|\n|`npm start`|Start webpack development server @ `localhost:3000`|\n|`npm run build`|Lint, test, and build the application to `./target`|\n|`npm run dev`|Same as `npm start`|\n|`npm run lint`|Lint `.js` files|\n|`npm run server`|Start express server @ `localhost:3000` to serve build artifacts from `./target` (must run `npm run build` first)|\n|`npm test`|Run unit tests with Karma and Jasmine|\n|`npm run test:watch`|Run unit tests with Karma and Jasmine; watch for changes to re-run tests|\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakepartusch%2Fcafe-todo-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjakepartusch%2Fcafe-todo-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakepartusch%2Fcafe-todo-app/lists"}