{"id":31522440,"url":"https://github.com/arcdevoff/todolist","last_synced_at":"2026-04-06T09:33:40.111Z","repository":{"id":315642321,"uuid":"1060330551","full_name":"arcdevoff/todolist","owner":"arcdevoff","description":"A Todo List web application built with TypeScript, NestJS, Prisma PostgreSQL, and Vite (React), featuring JWT-based authentication.","archived":false,"fork":false,"pushed_at":"2025-09-19T19:02:17.000Z","size":1157,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-03T15:08:45.331Z","etag":null,"topics":["jwt","nest","react","tailwindcss","todolist","typescript","vite"],"latest_commit_sha":null,"homepage":"https://todolist.arcdevoff.site/","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/arcdevoff.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-19T18:22:38.000Z","updated_at":"2025-09-19T19:02:21.000Z","dependencies_parsed_at":"2025-09-19T21:26:40.199Z","dependency_job_id":"5dc808de-bc9f-4689-80f3-ecf6580846ef","html_url":"https://github.com/arcdevoff/todolist","commit_stats":null,"previous_names":["arcdevoff/todolist"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/arcdevoff/todolist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arcdevoff%2Ftodolist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arcdevoff%2Ftodolist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arcdevoff%2Ftodolist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arcdevoff%2Ftodolist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arcdevoff","download_url":"https://codeload.github.com/arcdevoff/todolist/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arcdevoff%2Ftodolist/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31466629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T08:36:52.050Z","status":"ssl_error","status_checked_at":"2026-04-06T08:36:51.267Z","response_time":112,"last_error":"SSL_read: 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","nest","react","tailwindcss","todolist","typescript","vite"],"created_at":"2025-10-03T15:04:38.517Z","updated_at":"2026-04-06T09:33:40.104Z","avatar_url":"https://github.com/arcdevoff.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![screen](https://arcdevoff.site/portfolio/todolist.png?upd)\n\n# 📝 Todo List App\n\nA full-stack Todo List application built with **TypeScript**, **NestJS**, **Prisma**, **PostgreSQL**, and **Vite (React)**.  \nFeatures user authentication with **JWT**, task management, and secure API integration.\n\n---\n\n## ⚡ Stack\n\n- **Frontend**: Vite + React + TailwindCSS\n- **Backend**: NestJS (TypeScript)\n- **Database**: PostgreSQL with Prisma ORM\n- **Auth**: JWT (JSON Web Tokens)\n\n---\n\n## 📦 Installation\n\nClone the repository and install dependencies:\n\n```bash\ngit clone https://github.com/arcdevoff/todolist.git\ncd todolist\n```\n\nInstall dependencies for backend and frontend:\n\n```bash\n# Backend\ncd server\nnpm install\n\n# Frontend\ncd client\nnpm install\n```\n\n---\n\n## ⚙️ Environment Variables\n\nCreate `.env` files:\n\n### Backend (`server/.env`)\n\n```env\nDATABASE_URL=\"postgresql://USER:PASSWORD@localhost:5432/todolist\"\n\nPORT=3000\nNODE_ENV=development\n\nCLIENT_URL=http://localhost:5173\n\nACCESS_TOKEN_SECRET=replace_this_access_secret\nREFRESH_TOKEN_SECRET=replace_this_refresh_secret\nACCESS_TOKEN_EXPIRES_IN=15m\nREFRESH_TOKEN_EXPIRES_IN=7d\n```\n\n### Frontend (`client/.env`)\n\n```env\nVITE_API_URL=\"http://localhost:3000\"\nVITE_PORT=5173\n```\n\n---\n\n## 🗄️ Database (Prisma + PostgreSQL)\n\n1. Make sure PostgreSQL is running.\n2. Push schema to database:\n   ```bash\n   cd server\n   npx prisma migrate dev --name init\n   ```\n3. Generate Prisma client:\n   ```bash\n   npx prisma generate\n   ```\n\n---\n\n## 🚀 Running the Project\n\n### Backend (NestJS)\n\n```bash\ncd server\n# development\nnpm run start:dev\n\n# production\nnpm run build\nnpm run start:prod\n```\n\n### Frontend (Vite)\n\n```bash\ncd client\n# development\nnpm run dev\n\n# production build\nnpm run build\nnpm run preview\n```\n\n---\n\n## 🌐 Access\n\n- Frontend: `http://localhost:5173`\n- Backend API: `http://localhost:3000`\n\n---\n\n## 🛠️ Scripts\n\n### Backend\n\n- `npm run start:dev` → run NestJS in dev mode\n- `npm run start:prod` → run NestJS in production\n- `npx prisma studio` → open Prisma Studio (DB UI)\n\n### Frontend\n\n- `npm run dev` → run Vite dev server\n- `npm run build` → build for production\n- `npm run preview` → preview production build\n\n---\n\n## 📸 Features\n\n- ✅ JWT Authentication (register/login)\n- ✅ User-based tasks\n- ✅ Secure API with NestJS guards\n- ✅ Database schema with Prisma\n- ✅ Modern frontend with React + TailwindCSS\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farcdevoff%2Ftodolist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farcdevoff%2Ftodolist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farcdevoff%2Ftodolist/lists"}