{"id":13533727,"url":"https://github.com/arnu515/instagram-clone-with-cordova-appwrite","last_synced_at":"2026-07-13T09:32:40.400Z","repository":{"id":61724535,"uuid":"554530336","full_name":"arnu515/instagram-clone-with-cordova-appwrite","owner":"arnu515","description":"Instagram clone with Appwrite and Cordova","archived":false,"fork":false,"pushed_at":"2022-11-10T22:41:57.000Z","size":31,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-06-15T14:32:06.166Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/arnu515.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}},"created_at":"2022-10-20T00:56:08.000Z","updated_at":"2022-10-20T00:56:30.000Z","dependencies_parsed_at":"2022-10-20T15:15:26.072Z","dependency_job_id":null,"html_url":"https://github.com/arnu515/instagram-clone-with-cordova-appwrite","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/arnu515/instagram-clone-with-cordova-appwrite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnu515%2Finstagram-clone-with-cordova-appwrite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnu515%2Finstagram-clone-with-cordova-appwrite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnu515%2Finstagram-clone-with-cordova-appwrite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnu515%2Finstagram-clone-with-cordova-appwrite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arnu515","download_url":"https://codeload.github.com/arnu515/instagram-clone-with-cordova-appwrite/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnu515%2Finstagram-clone-with-cordova-appwrite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35418222,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-13T02:00:06.543Z","response_time":119,"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":[],"created_at":"2024-08-01T07:01:22.539Z","updated_at":"2026-07-13T09:32:40.375Z","avatar_url":"https://github.com/arnu515.png","language":"TypeScript","funding_links":[],"categories":["Showcase (Built with Appwrite 📣)"],"sub_categories":["Cordova"],"readme":"# Instagram clone with Appwrite and Cordova\n\n![image](https://user-images.githubusercontent.com/52203828/196832827-25dc6a5f-7a25-4b8a-9dec-4751ba6cd5f5.png)\n\nThis is a simple Instagram clone that uses Appwrite as the backend and Cordova as the frontend.\n\n## Getting Started\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/en/download/) installed\n- An [Appwrite](https://appwrite.io/) server running\n\n### Installing\n\nClone the repository\n\n```bash\ngit clone https://github.com/arnu515/instagram-clone-with-cordova-appwrite\n```\n\nInstall the dependencies\n\n```bash\nnpm install  # or yarn install\n```\n\n### Initializing Appwrite\n\nInstall the Appwrite CLI\n\n```bash\nnpm i -g appwrite\n\nappwrite login\n```\n\nIn your Appwrite console, create a project with the name `Instantgram` and the id `instantgram`\n\n![image](https://user-images.githubusercontent.com/52203828/196832083-3264337d-cc51-4104-82cd-32c2127878ee.png)\n\nCreate a database with the name `Instantgram` and the id `instantgram`\n\n![image](https://user-images.githubusercontent.com/52203828/196832122-adf78902-f60b-4f62-86b4-cfca2088e9b8.png)\n\nRun the command to create collections and functions\n\n```bash\nappwrite deploy collection  # Select all collections (press a)\nappwrite deploy function    # Select all fucntions (press a)\n```\n\nCreate a new API key in your console and head to functions.\n\nIn all the functions over there, add these two variables:\n\n```bash\n# change if needed\nAPPWRITE_FUNCTION_ENDPOINT=http://localhost/v1\nAPPWRITE_FUNCTION_API_KEY=secret_key_you_just_created\n```\n\n![image](https://user-images.githubusercontent.com/52203828/196832171-073eade6-511d-473c-99f5-6135c1fda449.png)\n\nCreate a storage bucket with the name `Instantgram` and the id `instantgram`\n\n![image](https://user-images.githubusercontent.com/52203828/196832185-b85d3013-f586-4cf5-8e1b-b69290d05ba3.png)\n\nSet these permissions and allowed file extensions as shown in the image below\n\n![image](https://user-images.githubusercontent.com/52203828/196832297-6225b7f3-d7ce-4e33-917d-55cd79510e9e.png)\n\n### Set up the project\n\nCreate a file called `.env` with the following contents\n\n```bash\n# replace with your appwrite server's endpoint\nVITE_APPWRITE_ENDPOINT=http://localhost/v1\n# don't change.\nVITE_APPWRITE_PROJECT_ID=instantgram\n```\n\n### Run the project (electron)\n\n```bash\n# build frontend\nyarn build\n\n# run electron\nnpx cordova run electron --nobuild\n```\n\nCheers :sparkle:\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farnu515%2Finstagram-clone-with-cordova-appwrite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farnu515%2Finstagram-clone-with-cordova-appwrite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farnu515%2Finstagram-clone-with-cordova-appwrite/lists"}