{"id":18246044,"url":"https://github.com/toggledtech/docs","last_synced_at":"2026-04-22T05:32:14.832Z","repository":{"id":206121066,"uuid":"715893881","full_name":"toggledtech/docs","owner":"toggledtech","description":"Toggled.tech Documentation.","archived":false,"fork":false,"pushed_at":"2024-10-23T00:14:41.000Z","size":237,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-10T19:34:45.227Z","etag":null,"topics":["builder","html-css-javascript","markdown","mdx","website","website-builder","website-builder-framework","website-building","website-building-platform"],"latest_commit_sha":null,"homepage":"https://toggled.tech/site/toggledtech-docs/","language":"MDX","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/toggledtech.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":"support.mdx","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":null,"patreon":"Toggled","open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":"https://zink.tips/lava"}},"created_at":"2023-11-08T03:27:15.000Z","updated_at":"2024-10-23T00:14:45.000Z","dependencies_parsed_at":"2023-11-12T01:24:30.449Z","dependency_job_id":"1a23ce61-80cd-48df-a359-c4804c1bf032","html_url":"https://github.com/toggledtech/docs","commit_stats":null,"previous_names":["carbonhosting/docs","toggledtech/docs"],"tags_count":0,"template":false,"template_full_name":"toggledtech/Toggled-Starter","purl":"pkg:github/toggledtech/docs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggledtech%2Fdocs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggledtech%2Fdocs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggledtech%2Fdocs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggledtech%2Fdocs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/toggledtech","download_url":"https://codeload.github.com/toggledtech/docs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggledtech%2Fdocs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32122714,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T00:31:26.853Z","status":"online","status_checked_at":"2026-04-22T02:00:05.693Z","response_time":58,"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":["builder","html-css-javascript","markdown","mdx","website","website-builder","website-builder-framework","website-building","website-building-platform"],"created_at":"2024-11-05T09:24:11.579Z","updated_at":"2026-04-22T05:32:14.804Z","avatar_url":"https://github.com/toggledtech.png","language":"MDX","readme":"---\nname: Development\ndescription: Develop Toggled Projects\n---\n\n# Getting Started With Toggled\n\n### Fork this Template\nStart off by forking our starter template: [https://github.com/toggledtech/Toggled-Starter](https://github.com/toggledtech/Toggled-Starter).\n\n![How to fork](https://orionideteam.nimbusweb.me/box/attachment/9239909/lyei9z1e23e316aezdac/x1EYvP0pdTsPfNQ9/screenshot-github.com-2023.09.10-11_07_53.png)\n\n### Toggled.json\nAll control of your web app can be found in `toggled.json`\n\nHere is what the default `toggled.json` looks like:\n```json\n{\n  \"pages\": [{\n    \"name\": \"Home\",\n    \"doc\": \"index\"\n  },\n  {\n    \"name\": \"About\",\n    \"doc\": \"about\"\n  }],\n  \"logo\": \"Toggled.png\",\n  \"action\": {\n    \"URL\": \"//toggled.tech\",\n    \"text\": \"Try Toggled\"\n  },\n  \"title\": \"Toggled Starter\",\n  \"members\": [\"Usernames of all Editors and Publishers *\"]\n}\n```\n\n### Adding, Removing, and Customizing Pages\nTo create a new page, you can need to add a JSON object to the array 'pages'.\n\n```json\n{\n  \"pages\": [\n    {\n      \"name\": \"Display Name (Also shown in URL)\",\n      \"doc\": \"The file path of the Markdown code in your GitHub repo\"\n    }\n  ]\n}\n```\n\nDeleting a page can simply be done by removing the object from the `pages` array.\n\n### Customizing your Web App\nIf you would like to edit the title, favicon, logo, or action button, then this can all be done via the `toggled.json` file.\n\n```json\n{\n  \"logo\": \"The file path of your logo. 80px x 80px (Cannot use external URL the photo must be in your GitHub Repo)\",\n  \"action\": {\n    \"URL\": \"The URL of your action button\",\n    \"text\": \"The display text of your action button\"\n  },\n  \"title\": \"The title in the address bar for your site\",\n  \"favicon\": \"The file path of your favicon. (Cannot use external URL the photo must be in your GitHub Repo)\",\n}\n```\n\n### Editor Notes\n\nYou must create your Toggled site in the \u003cb\u003e`main`\u003c/b\u003e branch.\n","funding_links":["https://patreon.com/Toggled","https://zink.tips/lava"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoggledtech%2Fdocs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftoggledtech%2Fdocs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoggledtech%2Fdocs/lists"}