binbash0 / docs

NEAR Protocol Documentation

Home Page:https://docs.near.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool





NEAR Protocol - scalable and usable blockchain

Discord CI

  • βš–οΈ NEAR Protocol is a new smart-contract platform that delivers scalability and usability.
  • πŸ›  Through sharding, it will linearly scale with the number of validation nodes on the network.
  • πŸ— Leveraging WebAssembly (via Rust and JavaScript), more sane contract management, ephemeral accounts and many other advancements, NEAR finally makes using a blockchain protocol easy for both developers and consumers.

Quick start

Check out the following links

Contributing

NEAR uses Docusaurus for documentation. Please refer to their documentation for details on major structural contributions to the documentation.

For simple content changes you have 2 options

The instant PR

This is the fastest way to submit content changes directly from the page where you notice a mistake.

  1. Open any page in the docs on https://docs.near.org
  2. Click the [ Edit ] button at the top right hand side of every content page
  3. Make your edits to the document that opens in GitHub by clicking the ✎ (pencil) icon
  4. Submit a PR with your changes and comments for context

The typical PR

This is the standard fork-branch-commit workflow for submitting pull requests to open source repositories

  1. Fork this repo to your own GitHub account (or just clone it directly if you are currently a member of NEAR)

  2. Open your editor to the top level repo folder to view the directory structure as seen below

  3. Move into the /website folder where you will run the following commands:

    • Make sure all the dependencies for the website are installed:

      # Install dependencies
      yarn
    • Run the local docs development server

      # Start the site
      yarn start

      Expected Output

      # Website with live reload is started
      LiveReload server started on port 35729
      Docusaurus server started on port 3000

      The website for docs will open your browser locally to port 3000

  4. Make changes to the docs

  5. Observe those changes reflected in the local docs

  6. Submit a pull request with your changes - Please check for broken links before opening PR πŸ™

Directory Structure

Your project file structure should look something like this with a few key files and folders highlighted

β”œβ”€β”€ CODE_OF_CONDUCT.md
β”œβ”€β”€ CONTRIBUTING.md
β”œβ”€β”€ LICENSE-APACHE.txt
β”œβ”€β”€ LICENSE-MIT.txt
β”œβ”€β”€ README.md             <-- the document you are reading right now
β”œβ”€β”€ docs                  <-- all the content for the site is in this folder as markdown files
└── website
    β”œβ”€β”€ build
    β”œβ”€β”€ core
    β”œβ”€β”€ i18n
    β”œβ”€β”€ package.json
    β”œβ”€β”€ pages
    β”œβ”€β”€ sidebars.json     <-- rarely used for changing left-hand-side page navigation
    β”œβ”€β”€ docusaurus.config.js     <-- rarely used for general site configuration (including header links)
    β”œβ”€β”€ static
    └── test-links.sh     <-- always used to test links before submitting changes

Found a broken link?

For broken links internal to the docs, please submit an issue or PR request as per above.

If you found a broken link from a Google search, please request to remove it from their index here: https://www.google.com/webmasters/tools/removals

Check for broken links

Before opening a pull request, please check for broken links:

yarn test

or id you are in the ./website directory:

yarn full-test

To manually run tests without rebuilding the site, run the following from the ./website directory:-

πŸƒβ€β™‚οΈ - Build and start server

yarn start-server

βœ… - Check links

yarn check-links

⛔️ - Stop server

yarn stop-server

About

NEAR Protocol Documentation

https://docs.near.org

License:Apache License 2.0


Languages

Language:SCSS 53.8%Language:TypeScript 21.7%Language:JavaScript 19.2%Language:CSS 4.3%Language:Shell 0.6%Language:MDX 0.5%