1
0
mirror of https://github.com/spacebarchat/docs.git synced 2024-11-08 11:22:31 +01:00
Go to file
Puyodead1 bd05fd11e6
Merge pull request #76 from FSG-Cat/patch-1
Change minimum node version to 18 and Change Python 3 from undefined to 3.10 or later.
2023-08-10 14:48:03 -04:00
.github Update build.yml 2023-05-01 12:43:35 +02:00
.vscode Prettier! 2023-04-08 15:00:42 +10:00
docs Merge pull request #76 from FSG-Cat/patch-1 2023-08-10 14:48:03 -04:00
.gitignore Add venv/ to .gitignore 2023-03-18 11:49:44 +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 use rapidoc for http api documentation 2023-04-28 22:26:57 +10:00
package.json add package.json 2023-01-15 18:54:57 -05:00
README.md Push Major Rebrand 2023-03-30 08:13:55 -06:00
requirements.txt Add mkdocs-macros-plugin dependency 2023-03-19 12:21:42 +01:00

Spacebar 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>/docs
    
  3. Install dependencies.

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

    • Format document(s).

    Spacebar 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.