1
0
mirror of https://github.com/spacebarchat/docs.git synced 2024-09-19 15:11:44 +02:00
Go to file
2023-03-18 11:49:22 +01:00
.github update workflow 2023-01-11 00:29:03 +11:00
.vscode prettier 2023-01-02 20:13:12 +11:00
docs Add client documentation 2023-03-18 11:49:22 +01:00
.gitignore Update gitignore to exclude venv 2023-03-17 12:39:58 +01:00
.prettierrc prettier 2023-01-02 20:13:12 +11:00
LICENSE Update LICENSE 2021-05-14 15:01:32 +02:00
mkdocs.yml update site description 2023-01-07 23:40:57 +11:00
package.json add package.json 2023-01-15 18:54:57 -05:00
README.md add deploy button to readme 2023-01-15 19:01:33 -05:00
requirements.txt add requirements.txt 2023-01-15 18:52:37 -05:00

Fosscord Docs

Build to GitHub Pages code style: prettier

Deploy with Vercel

How to get started:

  1. Fork this repository.

  2. Clone the forked repository.

    git clone https://github.com/<YOUR_USERNAME_HERE>/fosscord-docs
    
  3. Install dependencies.

    python3 -m pip install mkdocs-material mkdocs-swagger-ui-tag mkdocs-section-index
    
  4. Edit documents(s).

    • Format document(s).

    fosscord uses prettier formatter to consistently format our documents. Instructions to install and use prettier can be found here.

    If you are using vscode, install the prettier extension to automatically format documents on save.

  5. Test locally.

    • Serve in http://127.0.0.1:8000 with hot reload:

      python3 -m mkdocs serve
      
    • Build for production:

      python3 -m mkdocs build
      
  6. Commit changes with good commit messages.

  7. Create a pull request.