{"id":13534176,"url":"https://github.com/singhbhaskar/AdminWrite","last_synced_at":"2025-04-01T22:31:14.248Z","repository":{"id":163618350,"uuid":"639085713","full_name":"singhbhaskar/AdminWrite","owner":"singhbhaskar","description":"AdminWrite is a helper for Appwrite to perform bulk operations during development.","archived":false,"fork":false,"pushed_at":"2023-05-10T18:35:57.000Z","size":4818,"stargazers_count":9,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-02T21:31:58.733Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Svelte","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/singhbhaskar.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":"2023-05-10T18:20:08.000Z","updated_at":"2024-08-25T03:23:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"bf6ef1ad-3b45-4e7e-a75f-0ffba278ec2c","html_url":"https://github.com/singhbhaskar/AdminWrite","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singhbhaskar%2FAdminWrite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singhbhaskar%2FAdminWrite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singhbhaskar%2FAdminWrite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singhbhaskar%2FAdminWrite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/singhbhaskar","download_url":"https://codeload.github.com/singhbhaskar/AdminWrite/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246720496,"owners_count":20822913,"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-08-01T07:01:27.416Z","updated_at":"2025-04-01T22:31:14.241Z","avatar_url":"https://github.com/singhbhaskar.png","language":"Svelte","readme":"\n# AdminWrite\n![AdminWrite Logo](static/logo.svg)\n## 📝 What is AdminWrite?\n\nAdminWrite is a helper for Appwrite to perform bulk operations during development. Currently Database and Uses are supported with the following operations:\n* Select Deleted (100 in 1 request)\n* Delete All (100 in 1 request)\n* Bulk Create\n\n#### Additional Specific Feature\n* During the Bulk Document creation, according to the attributes the structure of document is present in the view.\n* The structure of document can also be copied by using the `Copy Document Format` Button.\n## 🧰 Tech Stack\n\n- [Appwrite](https://appwrite.io/)\n- [Svelte Kit](https://kit.svelte.dev/)\n- [Pink Design](https://pink.appwrite.io/)\n- [TypeScript](https://www.typescriptlang.org/)\n\n## 🛠️ Setup Server\n\n1. Setup Appwrite server\n2. Create your Appwrite project\n\n## 👀 Setup Client\n\n1. Install libarries `npm install`\n2. Duplicate `.dup.env` file and rename it to `.env`.\n3. Update the following environment variables in `.env` file:\n    - `PUBLIC_APPWRITE_ENDPOINT` - Appwrite instance endpoint.\n    - `PUBLIC_APPWRITE_PROJECT` - Project ID of your Appwrite project\n    - `PUBLIC_APPWRITE_KEY` - Generate a Key from Appwrite console and provide all permissions.\n## 🚀 Run Locally\n\n1. Run `npm run dev`.\n2. By default the application will run on [`http://localhost:5173/`](http://localhost:5173/).\n\n## 🤝 Contributing\n\n* Raise a new issue.\n* Code contribution:\n    * Fork the Repo\n    * Create a new branch as `fix-issue-description`\n    * Raise the PR.\n\n## 📖 References\n* [Pink Design](https://pink.appwrite.io/)\n* [SvelteKit Appwrite Starter](https://github.com/Meldiron/appwrite-ssr-svelte-kit/tree/main)\n\n## 🖼️ Screenshots\n*AdminWrite Home*\n![AdminWriteHome](docs/AdminWriteHome.png)\n*AdminWrite Database*\n![AdminWriteDatabase](docs/AdminWriteDatabase.png)\n*AdminWrite Document View*\n![AdminWriteDocumentView](docs/AdminWriteDocumentView.png)\n*AdminWrite Delete Document*\n![AdminWriteDeleteDocument](docs/AdminWriteDeleteDocument.png)\n*AdminWrite Bulk Document Create*\n![AdminWriteBulkDocumentCreate](docs/AdminWriteBulkDocumentCreate.png)\n*AdminWrite Users View*\n![AdminWriteUserView](docs/AdminWriteUserView.png)\n*AdminWrite Users Delete*\n![AdminWriteUserDelete](docs/AdminWriteUserDelete.png)\n*AdminWrite Bulk User Create*\n![AdminWriteUserBulkCreate](docs/AdminWriteUserBulkCreate.png)\n\n\n## 🤖 Auto-generated documentation\n\nEverything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).\n\n## Creating a project\n\nIf you're seeing this, you've probably already done this step. Congrats!\n\n```bash\n# create a new project in the current directory\nnpm create svelte@latest\n\n# create a new project in my-app\nnpm create svelte@latest my-app\n```\n\n## Developing\n\nOnce you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:\n\n```bash\nnpm run dev\n\n# or start the server and open the app in a new browser tab\nnpm run dev -- --open\n```\n\n## Building\n\nTo create a production version of your app:\n\n```bash\nnpm run build\n```\n\nYou can preview the production build with `npm run preview`.\n\n\u003e To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. No Adapter is installed and is meant to run locally.\n","funding_links":[],"categories":["Tools"],"sub_categories":["Community-Built SDKs"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsinghbhaskar%2FAdminWrite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsinghbhaskar%2FAdminWrite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsinghbhaskar%2FAdminWrite/lists"}