https://github.com/spacebarchat/docs
Docs for Spacebar
https://github.com/spacebarchat/docs
instant-messaging mkdocs mkdocs-material real-time-communication spacebarchat
Last synced: 17 days ago
JSON representation
Docs for Spacebar
- Host: GitHub
- URL: https://github.com/spacebarchat/docs
- Owner: spacebarchat
- License: other
- Created: 2021-05-14T08:49:20.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-03-24T00:14:14.000Z (about 1 month ago)
- Last Synced: 2025-03-30T00:05:40.443Z (24 days ago)
- Topics: instant-messaging, mkdocs, mkdocs-material, real-time-communication, spacebarchat
- Homepage: https://docs.spacebar.chat
- Size: 10.2 MB
- Stars: 48
- Watchers: 4
- Forks: 50
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: docs/contributing/index.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Spacebar Docs
[](https://github.com/spacebarchat/docs/actions/workflows/build.yml)
[](https://app.netlify.com/sites/spacebar-chat/deploys)
[](https://github.com/prettier/prettier)[](https://vercel.com/new/clone?repository-url=https://github.com/spacebarchat/docs)
## How to get started
1. Fork this repository.
2. Clone the forked repository.```bash
git clone https://github.com//docs
```3. Install dependencies.
```bash
python3 -m pip install -r requirements.txt
```4. Edit documents(s).
- Format document(s).
Spacebar uses [prettier](https://prettier.io) formatter to consistently format our documents. Instructions to install and use prettier can be found [here](https://prettier.io/docs/en/install.html).
If you are using vscode, install the [prettier extension](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) to automatically format documents on save.
5. Test locally.
- Serve in with hot reload:
```bash
python3 -m mkdocs serve
```- Build for production:
```bash
python3 -m mkdocs build
```6. Commit changes with good commit messages.
7. Create a pull request.