{"id":23293331,"url":"https://github.com/theprojectsx/prisma-sqlite-nextjs","last_synced_at":"2025-04-06T18:47:10.649Z","repository":{"id":220703508,"uuid":"752265266","full_name":"TheProjectsX/prisma-sqlite-nextjs","owner":"TheProjectsX","description":"Using SQLite and Prisma to create a Task Tracker web app using Next JS (Feature Testing Project)","archived":false,"fork":false,"pushed_at":"2024-02-05T13:30:12.000Z","size":61,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T00:45:46.571Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/TheProjectsX.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}},"created_at":"2024-02-03T14:24:55.000Z","updated_at":"2024-02-05T16:25:58.000Z","dependencies_parsed_at":"2024-02-05T14:48:24.831Z","dependency_job_id":"6d99b66d-0355-412d-bf2b-60f72dc37aa1","html_url":"https://github.com/TheProjectsX/prisma-sqlite-nextjs","commit_stats":null,"previous_names":["theprojectsx/prisma-sqlite-nextjs"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheProjectsX%2Fprisma-sqlite-nextjs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheProjectsX%2Fprisma-sqlite-nextjs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheProjectsX%2Fprisma-sqlite-nextjs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheProjectsX%2Fprisma-sqlite-nextjs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheProjectsX","download_url":"https://codeload.github.com/TheProjectsX/prisma-sqlite-nextjs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247535341,"owners_count":20954573,"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-12-20T06:15:00.190Z","updated_at":"2025-04-06T18:47:10.629Z","avatar_url":"https://github.com/TheProjectsX.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Tracker\nIsn't created as a Serious Project. Just created to Clear the concepts of the Used Technologies...\n\n### Technologies:\n\n- Next JS\n- Prisma\n- SQLite\n- ChatGPT\n\n### Frontend:\n\nDesigned by _ChatGPT_. Modified and Described by _Your Very Own!_\n\n### Prisma Installation\n\n```\nyarn add prisma @prisma/client sqlite3\nyarn prisma init\n```\n\n### Setting up SQLite\n\nEdit in \"prisma/schema.prisma\"\n\n```\ndatasource db {\n  provider = \"sqlite\"\n  url      = \"file:./dev.db\"\n}\n```\n\n### Add Model\n\nEdit in \"prisma/schema.prisma\"\n\n```\ngenerator client {\n  provider = \"prisma-client-js\"\n}\n\nmodel UserTask {\n  id          String   @id @default(cuid())\n  title       String\n  description String\n  createdAt   DateTime @default(now())\n  updatedAt   DateTime @updatedAt\n}\n```\n\n### Generate Prisma Client\n\n```\nyarn prisma generate\n```\n\n### Migrate after Updating Model\n\n```\nyarn prisma migrate dev --name init\n```\n\n### View the Database as GUI\n\n```\nyarn prisma studio\n```\n\n### Conversation with ChatGPT\n\nIf you are interested in Checking the Conversation with the ChatGPT, you Can [Check Here](https://chat.openai.com/share/c1b551b6-3002-410d-b865-dc2a2468d20d)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheprojectsx%2Fprisma-sqlite-nextjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheprojectsx%2Fprisma-sqlite-nextjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheprojectsx%2Fprisma-sqlite-nextjs/lists"}