{"id":22799932,"url":"https://github.com/tangle-network/docs","last_synced_at":"2025-04-19T16:44:49.396Z","repository":{"id":196702383,"uuid":"696953691","full_name":"tangle-network/docs","owner":"tangle-network","description":"Documentation for Tangle Network (https://docs.tangle.tools)","archived":false,"fork":false,"pushed_at":"2024-10-25T11:17:28.000Z","size":209176,"stargazers_count":1,"open_issues_count":6,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-25T12:58:01.718Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://docs.tangle.tools","language":"MDX","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tangle-network.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-26T18:49:12.000Z","updated_at":"2024-10-25T11:17:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"fd0a430d-936f-4545-a5fe-cc8f09e47a2f","html_url":"https://github.com/tangle-network/docs","commit_stats":null,"previous_names":["webb-tools/tangle-docs","tangle-network/tangle-docs","tangle-network/docs"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Fdocs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Fdocs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Fdocs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Fdocs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tangle-network","download_url":"https://codeload.github.com/tangle-network/docs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229345342,"owners_count":18058474,"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-12-12T07:10:28.836Z","updated_at":"2025-04-19T16:44:49.377Z","avatar_url":"https://github.com/tangle-network.png","language":"MDX","readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://www.tangle.tools/\"\u003e\n    \u003cimg src=\"https://github.com/tangle-network/tangle-docs/assets/38070512/12b7b949-89be-4c9d-9be1-2115d2ea15a2\" alt=\"image\" /\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n\u003cp align=\"left\"\u003e\n    \u003cstrong\u003e🚀 Official Documentation of the Tangle Network 🚀 \u003c/strong\u003e\n\u003c/p\u003e\n\n\u003c!-- Badges --\u003e\n\n\u003c!-- Description --\u003e\n\n❗ **Note:** This is a fork of [Vercel Docs](https://github.com/vercel/turbo/tree/main/docs).\n\nThis repository serves as the **documentation** for the **[Tangle Network](https://www.tangle.tools/)** . The docs are written in [MDX](https://mdxjs.com/) format an extension of [markdown](https://www.markdownguide.org/), processed by [Nextra](https://github.com/shuding/nextra/tree/main), and published to Tangle Docs. For support on using Nextra see [https://nextra.site/docs].(https://nextra.site/docs)\n\n### Directory structure\n\n| Folder     | Description                                                                                |\n| ---------- | ------------------------------------------------------------------------------------------ |\n| components | Dedicated directory for documentation related ui-components to be imported into mdx pages. |\n| images     | Dedicated directory for documentation related assets.                                      |\n| pages      | Dedicated directory for documentation content.                                             |\n\n### Updating or Adding Content\n\nFor updating or adding content to the docs site, builders simply need to follow the below instructions. Please note,\nif image assets are added to a given section you must provide both a dark and light version of the image.\n\n**Updating existing content**\n\n1. Navigate to the desired page to update (e.g. `/pages/overview.mdx`)\n2. Make applicable changes\n3. Test those changes locally `yarn install \u0026\u0026 yarn dev`\n\n**Adding content for existing section**\n\n1. Navigate to the desired documentation section (e.g. `/pages/overview.mdx/`)\n2. Create a new mdx file that represents new page for desired section (e.g. `advanced.mdx`)\n3. Write desired content for the new mdx file\n4. Update the `_meta.json` file within the section directory to include your new page into the navigation\n5. Test those changes locally `yarn install \u0026\u0026 yarn dev`. We request that you also run Prettier.\n\n**Note:** To create a section with dropdown navigation, simply create a folder and specify the new navigation in `_meta.json`, create new your new files in the new directory along with its own `_meta.json` to outline the desired\nnavigation.\n\n## 🚀 Quick start\n\n1.  **Clone the repo**\n\n    ```bash\n    # create a new folder to get going\n    git clone https://github.com/tangle-network/tangle-docs.git\n    ```\n\n2.  **Install dependencies**\n\n    Navigate into your new site's directory and install all dependencies.\n\n    ```bash\n    cd tangle-docs/\n    yarn install\n    ```\n\n3.  **Fire the engine**\n\n    Navigate into your new site's directory and use the following command to start the development server locally.\n\n    ```bash\n    yarn dev # alias for `yarn start` and `yarn develop`\n    ```\n\n4.  **Open the code and start customizing!**\n\n    Your site is now running at `http://localhost:3000/`.\n\n    Edit to see your site update in real-time on save.\n\n5.  **Learn more about Nextra, Next, and nextra-theme-docs**\n\n    - [Documentation](https://nextra.site/docs)\n    - [Themes](https://nextra.site/docs/docs-theme)\n    - [Guides](https://nextra.site/docs/guide)\n\n\u003ch2 id=\"contribute\"\u003e Contributing \u003c/h2\u003e\n\nInterested in contributing to the Tangle Network Documentation? Thank you so much for your interest! We are always appreciative for contributions from the open-source community!\n\nIf you have a contribution in mind, please check out our [Contribution Guide](./.github/CONTRIBUTING.md) for information on how to do so. We are excited for your first contribution! If you have any further questions, please do not hesitate to reach out on our [Tangle Discord channel](https://discord.com/invite/cv8EfJu3Tn)! We would love to get to know you and your work!\n\n\u003ch2 id=\"license\"\u003e License \u003c/h2\u003e\n\nLicensed under \u003ca href=\"LICENSE\"\u003eMPL-2.0\u003c/a\u003e.\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the MPL-2.0 license, shall be licensed as above, without any additional terms or conditions.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftangle-network%2Fdocs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftangle-network%2Fdocs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftangle-network%2Fdocs/lists"}