Find a file
Rory& 075b1f452f
Some checks failed
Build to GitHub Pages / deploy (push) Has been cancelled
Merge pull request #134 from spacebarchat/klipy-docs
Klipy docs
2026-07-08 01:22:36 +02: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 Document gif provider query endpoint 2026-07-07 20:21:28 +02:00
.gitignore fix(config): Update the configuration instructions for new servers 2026-07-05 01:55:14 +02:00
.prettierrc prettier 2023-01-02 20:13:12 +11:00
LICENSE Update LICENSE 2021-05-14 15:01:32 +02:00
mkdocs.yml Merge pull request #116 from strangeglyph/nixos-installation-instructions 2026-04-25 21:19:59 +02: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 Clean up readme badges 2026-04-27 01:57:32 +02:00
requirements.txt NixOS instructions for previewing docs 2026-04-25 23:52:15 +02:00
runtime.txt fine, be like that 2023-08-30 22:59:24 -04:00

Spacebar Docs

Build to GitHub Pages code style: prettier

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
    

3.1. NixOS

```bash
nix shell nixpkgs#python3 nixpkgs#python3Packages.pip
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```
  1. 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.

  2. Test locally.

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

      python3 -m mkdocs serve
      
    • Build for production:

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

  4. Create a pull request.