Documentation site for Status Network
https://docs.status.network
fd13c021fc | ||
---|---|---|
docs | ||
src/css | ||
static | ||
.gitignore | ||
README.md | ||
babel.config.js | ||
docusaurus.config.ts | ||
package.json | ||
sidebars.ts | ||
tsconfig.json | ||
yarn.lock |
README.md
Status Network Documentation
Welcome to the official documentation for Status Network! This repository contains the source code for our documentation website, built using Docusaurus, a modern static website generator.
🚀 Getting Started
Prerequisites
Installation
# Clone the repository
git clone https://github.com/status-network/docs.git
cd docs
# Install dependencies
yarn
Local Development
# Start the development server
yarn start
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
Build
# Build the static site
yarn build
This command generates static content into the build
directory and can be served using any static contents hosting service.
Deployment
Using SSH:
USE_SSH=true yarn deploy
Not using SSH:
GIT_USER=<Your GitHub username> yarn deploy
📝 Contributing
We welcome contributions from the community! Here's how you can help improve our documentation:
Making Changes
- Fork the repository
- Create a new branch:
git checkout -b feature/your-feature-name
- Make your changes
- Test locally using
yarn start
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin feature/your-feature-name
- Submit a pull request
Documentation Structure
docs/
├── introduction/ # Introduction and getting started
├── tokenomics/ # SNT and AURA token documentation
├── general-info/ # Network details and contracts
├── tools/ # Development tools and resources
├── tutorials/ # Step-by-step guides
├── security/ # Security information
└── other/ # Additional resources
Style Guide
When contributing to the documentation, please follow these guidelines:
- Use clear, concise language
- Include code examples where applicable
- Add screenshots or diagrams for complex concepts
- Follow the existing document structure
- Use appropriate frontmatter for all markdown files
Example markdown frontmatter:
---
id: page-id
title: Page Title
description: Brief description of the page
sidebar_position: 1
---
Made with ❤️ by the Status Network community