We love that you're becoming a contributor to Tangle! This guide will walk you through the steps to propose changes to the official docs.
Note: The easiest way to contribute is forking the repository, and using the editor on GitHub. For larger changes, continue to the steps below.
Ready to propose your changes? See Creating a pull request from a fork.
- Fork the
websiterepository on GitHub. - Clone your forked repository.
- Ensure you have a compatible version of Node installed (see
package.jsonfor requirements).- Running
node -vwill reveal your current version, or an error if you don't have node installed.
- Running
- Run
npm install. - Run
npm run start.
- Wait for the dev server logs to read
Compiled successfully. - Make changes within the
/docs,/src, and/staticdirectories.- Our documentation is built using Docusaurus, with guides available to you here.
- Preview changes by opening the dev server URL in your browser at http://localhost:3000.
- Commit and push your changes to a branch on your fork.
- Please follow this commit message format:
docs: Document Tangle personal preferences **Changes** * Adds document on personal preference settings * Adds link to document in sidebar - Other prefixes are
feat(as in feature),refactor, andfix.
- Please follow this commit message format:
- Create a Pull Request from your fork into the
TangleML/websiterepository.