Documentation site for Status Network https://docs.status.network
Go to file
Marko Burčul 24a3023288
Merge pull request #7 from status-im/allow-dev-page-to-build
jenkinsfile: allow deploy of dev site
2024-10-30 12:22:45 +01:00
.github fix: Navigation bar cosmetic fixes (#2) 2024-10-24 19:11:17 +02:00
docs feedback fixes 2024-10-28 21:39:51 +05:30
i18n intro content, css bug fixes, css improvements, translated docs 2024-10-26 15:27:16 +05:30
src/css algolia doc search 2024-10-28 21:36:15 +05:30
static initial commit 2024-10-24 21:09:46 +05:30
.gitignore fix: Navigation bar cosmetic fixes (#2) 2024-10-24 19:11:17 +02:00
Jenkinsfile Merge pull request #7 from status-im/allow-dev-page-to-build 2024-10-30 12:22:45 +01:00
README.md Merge pull request #7 from status-im/allow-dev-page-to-build 2024-10-30 12:22:45 +01:00
babel.config.js initial commit 2024-10-24 21:09:46 +05:30
docusaurus.config.ts add sn logo on links 2024-10-29 12:17:52 +05:30
flake.lock build: add jenkinsfile and flake file 2024-10-28 13:56:19 +01:00
flake.nix build: add jenkinsfile and flake file 2024-10-28 13:56:19 +01:00
package.json initial commit 2024-10-24 21:09:46 +05:30
sidebars.ts initial commit 2024-10-24 21:09:46 +05:30
tsconfig.json initial commit 2024-10-24 21:09:46 +05:30
yarn.lock yarn fix 2024-10-24 22:05:17 +05:30

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

If you are familiar with using Nix shell all of the dependencies will be installed by just running nix develop from within this repository which will spawn a new shell.

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.

CI/CD

The hosting is done using Caddy server with Git plugin for handling GitHub webhooks.

Information about deployed build can be also found in /build.json available on the website.

📝 Contributing

We welcome contributions from the community! Here's how you can help improve our documentation:

Making Changes

  1. Fork the repository
  2. Create a new branch: git checkout -b feature/your-feature-name
  3. Make your changes
  4. Test locally using yarn start
  5. Commit your changes: git commit -am 'Add some feature'
  6. Push to the branch: git push origin feature/your-feature-name
  7. 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

Made with ❤️ by the Status Network community