{"id":21243938,"url":"https://github.com/aaronksaunders/nextjs-appwrite-app","last_synced_at":"2025-08-13T01:06:23.388Z","repository":{"id":235424729,"uuid":"790571651","full_name":"aaronksaunders/nextjs-appwrite-app","owner":"aaronksaunders","description":"integrating appwrite with NextJS","archived":false,"fork":false,"pushed_at":"2024-11-15T06:57:02.000Z","size":88,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-26T10:59:07.429Z","etag":null,"topics":["appwrite-auth","appwrite-database","next-app-router","nextjs","server-components"],"latest_commit_sha":null,"homepage":"","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/aaronksaunders.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-04-23T06:02:13.000Z","updated_at":"2024-11-15T06:57:05.000Z","dependencies_parsed_at":"2025-01-21T20:10:34.634Z","dependency_job_id":"3942147f-3959-4745-8a7b-49c608b79d31","html_url":"https://github.com/aaronksaunders/nextjs-appwrite-app","commit_stats":null,"previous_names":["aaronksaunders/nextjs-appwrite-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aaronksaunders/nextjs-appwrite-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronksaunders%2Fnextjs-appwrite-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronksaunders%2Fnextjs-appwrite-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronksaunders%2Fnextjs-appwrite-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronksaunders%2Fnextjs-appwrite-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aaronksaunders","download_url":"https://codeload.github.com/aaronksaunders/nextjs-appwrite-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronksaunders%2Fnextjs-appwrite-app/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270160961,"owners_count":24537549,"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-08-12T02:00:09.011Z","response_time":80,"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":["appwrite-auth","appwrite-database","next-app-router","nextjs","server-components"],"created_at":"2024-11-21T01:14:50.502Z","updated_at":"2025-08-13T01:06:23.001Z","avatar_url":"https://github.com/aaronksaunders.png","language":"TypeScript","readme":"# Next JS Appwrite Project Management App\n\n## Overview\n\nThis project is built using Next.js and Appwrite. It includes user authentication and data management features. Managing Projects, Tasks and Comments with relationships and permissions\n\n## Getting Started\n\nTo get started with this project, follow these steps:\n\n1. Clone the repository.\n2. Install the dependencies using `npm install`.\n3. Set up your environment variables as described in the `.env.example` file.\n4. Create the required database collections and attributes in your Appwrite project.\n\n## Required Database Collections and Attributes\n\n### Users Collection\n\nThe `users` collection is used to store user information. It should have the following attributes:\n\n- `id` (string): The unique identifier for the user.\n- `name` (string): The name of the user.\n- `email` (string): The email address of the user.\n- `createdAt` (date): The date and time when the user was created.\n\n### Projects Collection\n\nThe `projects` collection is used to store project information. It should have the following attributes:\n\n- `$id` (string, system-generated): The unique identifier for the project.\n- `$collectionId` (string, system-generated): The collection ID.\n- `$databaseId` (string, system-generated): The database ID.\n- `$createdAt` (string, system-generated): The date and time when the project was created.\n- `$updatedAt` (string, system-generated): The date and time when the project was last updated.\n- `$permissions` (string[], system-generated): The permissions associated with the project.\n- `name` (string): The name of the project.\n- `description` (string): The description of the project.\n- `tasks` (Task[]): An array of tasks associated with the project.\n\n### Tasks Collection\n\nThe `tasks` collection is used to store task information. It should have the following attributes:\n\n- `$id` (string, system-generated): The unique identifier for the task.\n- `$collectionId` (string, system-generated): The collection ID.\n- `$databaseId` (string, system-generated): The database ID.\n- `$createdAt` (string, system-generated): The date and time when the task was created.\n- `$updatedAt` (string, system-generated): The date and time when the task was last updated.\n- `$permissions` (string[], system-generated): The permissions associated with the task.\n- `name` (string): The name of the task.\n- `description` (string): The description of the task.\n- `status` (string): The status of the task.\n- `projects` (string): The ID of the project this task is associated with.\n\n### Comments Collection\n\nThe `comments` collection is used to store comments on tasks. It should have the following attributes:\n\n- `$id` (string, system-generated): The unique identifier for the comment.\n- `$collectionId` (string, system-generated): The collection ID.\n- `$databaseId` (string, system-generated): The database ID.\n- `$createdAt` (string, system-generated): The date and time when the comment was created.\n- `$updatedAt` (string, system-generated): The date and time when the comment was last updated.\n- `$permissions` (string[], system-generated): The permissions associated with the comment.\n- `comment_text` (string): The text of the comment.\n- `author_id` (string): The ID of the author of the comment.\n- `author_name` (string): The name of the author of the comment.\n- `tasks` (string): The ID of the task this comment is associated with.\n\n## Setting Up Appwrite\n\n1. Sign up for an Appwrite account and create a new project.\n2. Create the required database collections and attributes as described above.\n3. Set up your environment variables with the Appwrite project details:\n   - `NEXT_PUBLIC_APPWRITE_ENDPOINT`: The endpoint URL of your Appwrite server.\n   - `NEXT_PUBLIC_APPWRITE_PROJECT_ID`: The project ID of your Appwrite project.\n   - `APPWRITE_API_KEY`: The API key for your Appwrite project (for admin operations).\n   - `NEXT_APPWRITE_COOKIE_NAME`: The name of the cookie used for session management.\n\n## Running the Project\n\nTo run the project locally, use the following command:\n\n```bash\nnpm run dev","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faaronksaunders%2Fnextjs-appwrite-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faaronksaunders%2Fnextjs-appwrite-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faaronksaunders%2Fnextjs-appwrite-app/lists"}