{"id":19594543,"url":"https://github.com/toggle-corp/ai-chatbot-cms","last_synced_at":"2026-06-13T00:32:51.307Z","repository":{"id":259186633,"uuid":"874678451","full_name":"toggle-corp/ai-chatbot-cms","owner":"toggle-corp","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-18T11:02:53.000Z","size":804,"stargazers_count":1,"open_issues_count":33,"forks_count":0,"subscribers_count":2,"default_branch":"develop","last_synced_at":"2025-08-18T13:09:21.344Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/toggle-corp.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}},"created_at":"2024-10-18T09:07:51.000Z","updated_at":"2025-08-18T08:33:00.000Z","dependencies_parsed_at":"2024-11-05T11:27:46.353Z","dependency_job_id":"5ba00ff5-c819-442c-b470-e145339dcc40","html_url":"https://github.com/toggle-corp/ai-chatbot-cms","commit_stats":null,"previous_names":["toggle-corp/ai-chatbot-cms"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/toggle-corp/ai-chatbot-cms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggle-corp%2Fai-chatbot-cms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggle-corp%2Fai-chatbot-cms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggle-corp%2Fai-chatbot-cms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggle-corp%2Fai-chatbot-cms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/toggle-corp","download_url":"https://codeload.github.com/toggle-corp/ai-chatbot-cms/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggle-corp%2Fai-chatbot-cms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34268187,"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-06-12T02:00:06.859Z","response_time":109,"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-11-11T08:43:54.767Z","updated_at":"2026-06-13T00:32:51.289Z","avatar_url":"https://github.com/toggle-corp.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AI CHATBOT CMS\n\nThe AI chatbot will be white-labeled, allowing for full customization to meet the needs of any company. The chatbot will be integrated with Facebook Messenger, WhatsApp, and a custom chat window that can be embedded into company websites.\n\n## Built with\n[![React][react-shields]][react-url] [![Vite][vite-shields]][vite-url] [![Typescript][typescript-shields]][typescript-url]\n\n## Getting started\n\nBelow are the steps to guide you through preparing your local enviroment for the AI CHATBOT CMS. Before diving into setup please look into the concept of [Github Sub Modules](https://github.blog/open-source/git/working-with-submodules/), [Docker Merge](https://docs.docker.com/compose/how-tos/multiple-compose-files/merge/).\n\n### Prerequisites\n\nTo begin, ensure you have network access. Then, you'll need the following:\n\n1. [Git](https://git-scm.com/)\n2. [Node.JS](https://nodejs.org/en/) version \u003e=18 / 20+\n3. [Pnpm](https://pnpm.io/)\n4. Alternatively, you can use [Docker](https://www.docker.com/) to build the application.\n\n### Local development (with docker)\n\nClone the repository using HTTPS, SSH, or Github CLI\n```bash\ngit clone https://github.com/toggle-corp/ai-chatbot-cms.git #HTTPS\ngit clone git@github.com:toggle-corp/ai-chatbot-cms.git #SSH\ngh repo clone toggle-corp/ai-chatbot-cms #Github CLI\n```\nDownload the contents of backend(ai-chatbot-backend)\n```bash\ngit submodule update --init --recursive\n```\nUpdate Environment variables\n* create .env file and add COMPOSE_FILE variable for the ai-chatbot-cms\n```bash\ntouch .env\n```\n* Copy env.example to .env and update the variables for the backend\n```bash\ncd backend\ncp env.example .env\n```\n\u003e NOTE: The backend has a higher priority than the ai-chatbot-cms. You can add backend environment variables in the CMS, but you must create a .env file in the backend for them to work.\n\nBuild the docker image\n```bash\ndocker compose build\n```\nStart the development server\n```bash\ndocker compose up\n```\nInstall the dependencies\n```bash\ndocker compose exec react bash -c 'pnpm install'\n```\nGenerate type\n```bash\ndocker compose exec react bash -c 'pnpm generate:type'\n```\n### Local development (without docker)\n\nSame steps upto downloading the contents of backend\n\nUpdate Enviroment variables\n\n* create .env file and add COMPOSE_FILE and other variable for the ai-chatbot-cms\n```bash\ntouch .env\n```\n\u003e NOTE: Copy the env variables from the docker compose file in environment section\n\nInstall the dependencies\n```bash\npnpm install\n```\nGenerate type\n```bash\npnpm generate:type\n```\nStart the development server\n```bash\npnpm start\n```\n\n\u003c!-- MARKDOWN LINKS \u0026 IMAGES --\u003e\n\u003c!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --\u003e\n[react-shields]: https://img.shields.io/badge/react-%2320232a.svg?style=for-the-badge\u0026logo=react\u0026logoColor=%2361DAFB\n[react-url]: https://reactjs.org/\n[vite-shields]: https://img.shields.io/badge/vite-%23646CFF.svg?style=for-the-badge\u0026logo=vite\u0026logoColor=white\n[vite-url]: https://vitejs.dev/\n[typescript-shields]: https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge\u0026logo=typescript\u0026logoColor=white\n[typescript-url]: https://www.typescriptlang.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoggle-corp%2Fai-chatbot-cms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftoggle-corp%2Fai-chatbot-cms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoggle-corp%2Fai-chatbot-cms/lists"}