{"id":20778567,"url":"https://github.com/dzmitryur/to-do-list","last_synced_at":"2026-04-29T20:33:49.181Z","repository":{"id":242342942,"uuid":"809309522","full_name":"DzmitryUr/to-do-list","owner":"DzmitryUr","description":"To-Do List Application in React JS","archived":false,"fork":false,"pushed_at":"2024-06-10T10:13:08.000Z","size":192,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-06T23:37:39.191Z","etag":null,"topics":["css3","html5","jsx","react-course","react-tutorial","reactjs","todolist","todolist-app","todolist-application","todolist-react"],"latest_commit_sha":null,"homepage":"https://dzmitryur.github.io/to-do-list/","language":"JavaScript","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/DzmitryUr.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":"2024-06-02T10:29:22.000Z","updated_at":"2024-12-03T07:35:49.000Z","dependencies_parsed_at":"2024-06-02T11:50:30.285Z","dependency_job_id":"ea7ce9d2-0e64-4b6d-8f4c-848af130fc85","html_url":"https://github.com/DzmitryUr/to-do-list","commit_stats":null,"previous_names":["dzmitryur/to-do-list"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DzmitryUr/to-do-list","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DzmitryUr%2Fto-do-list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DzmitryUr%2Fto-do-list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DzmitryUr%2Fto-do-list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DzmitryUr%2Fto-do-list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DzmitryUr","download_url":"https://codeload.github.com/DzmitryUr/to-do-list/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DzmitryUr%2Fto-do-list/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32443559,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T20:22:27.477Z","status":"ssl_error","status_checked_at":"2026-04-29T20:22:26.507Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["css3","html5","jsx","react-course","react-tutorial","reactjs","todolist","todolist-app","todolist-application","todolist-react"],"created_at":"2024-11-17T13:23:02.298Z","updated_at":"2026-04-29T20:33:49.162Z","avatar_url":"https://github.com/DzmitryUr.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# To-Do List Application created with Vite\nWelcome to the To-Do List App! This project is part of the React Tutorials series and is built using React. It is a simple, yet effective, application to manage your daily tasks.\n\n## About the Project\nThe To-Do List App is a basic React application designed to help users manage their tasks efficiently. This project serves as a practical example for learning and implementing React concepts such as components, state management, and event handling.\n\nWatch the full Build and Deploy To-Do List Step-by-Step Tutorial on YouTube:\n\u003cdiv align=\"left\"\u003e\n      \u003ca href=\"https://www.youtube.com/watch?v=-vh-BBquDTU\"\u003e\n         \u003cimg src=\"https://img.youtube.com/vi/-vh-BBquDTU/0.jpg\" alt=\"Watch Build To-Do List Course on YouTube\"\u003e\n      \u003c/a\u003e\n\u003c/div\u003e\n\n## Deploying Vite App to GitHub Pages\n\n1.  **Create a GitHub Account and Install Git:**\n\n    - If you don't have a GitHub account, sign up and install Git on your computer.\n\n2.  **Create a New Repository:**\n\n    - Log in to your GitHub account and click on the \"New\" button to create a new repository.\n    - Set the repository name and click on the \"Create repository\" button.\n\n3.  **Set Up the Repository:**\n\n    Follow the command line instructions provided by GitHub to initialize the repository on your local machine.\n\n    ```bash    \n    git init\n    git add .\n    git commit -m \"first commit\"\n    git branch -M main\n    git remote add origin https://github.com/DzmitryUr/to-do-list-copy.git\n    git push -u origin main\n    ```\n\n4.  **Configure the vite.config.js File**\n    Configure the vite.config.js file to set the correct base path.\n\n    ```javascript\n    export default defineConfig({\n      plugins: [react()],\n      base: /\u003cREPOSITORY_NAME\u003e/, // Replace \u003cREPOSITORY_NAME\u003e with your GitHub repository name\n    });\n    ```\n\n5.  **Install gh-pages**\n    Install gh-pages package as a dev dependency\n\n    ```bash\n    npm install gh-pages --save-dev\n    ```\n\n6.  **Update package.json**\n\n    - Set homepage in package.json by using URL on GihHub\n\n    ```json\n    \"homepage\": \"https://{username}.github.io/{repo-name}/\"\n    ```\n\n    - Add predeploy and deploy scripts to package.json\n\n    ```javascript\n    \"scripts\": {\n      // other scripts\n      \"predeploy\" : \"npm run build\",\n      \"deploy\" : \"gh-pages -d dist\",\n    }\n    ```\n\n7.  **Run Deploy**\n    ```bash\n    npm run deploy\n    ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdzmitryur%2Fto-do-list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdzmitryur%2Fto-do-list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdzmitryur%2Fto-do-list/lists"}