1
0
mirror of https://github.com/spacebarchat/docs.git synced 2024-09-08 00:59:42 +02:00
Go to file
2024-07-22 09:12:43 +10:00
.github fix build error caused by dep updates, and remove swagger-ui-tag dep 2023-08-22 13:40:03 +10:00
.vscode Prettier! 2023-04-08 15:00:42 +10:00
docs Improve application/bot docs 2024-07-19 14:09:51 +02: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 fix build error caused by dep updates, and remove swagger-ui-tag dep 2023-08-22 13:40:03 +10:00
netlify.toml Update netlify.toml 2023-08-30 23:02:40 -04:00
package.json add package.json 2023-01-15 18:54:57 -05:00
README.md Update README.md 2023-08-30 23:05:25 -04:00
requirements.txt fix build error caused by dep updates, and remove swagger-ui-tag dep 2023-08-22 13:40:03 +10:00
runtime.txt fine, be like that 2023-08-30 22:59:24 -04:00

Spacebar Docs

Build to GitHub Pages Netlify Status 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 -r requirements.txt
    
  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.