mirror of
https://github.com/spacebarchat/docs.git
synced 2024-11-08 19:32:30 +01:00
Mirror of https://github.com/spacebarchat/docs
c160b918b2
* Moves updating guide -> maintenance * Adds `when should server restart` page. Inspired by this question: https://discord.com/channels/806142446094385153/898197424340860928/1062927020750802985 |
||
---|---|---|
.github | ||
.vscode | ||
docs | ||
.gitignore | ||
.prettierrc | ||
LICENSE | ||
mkdocs.yml | ||
README.md |
Fosscord Docs
How to get started:
-
Fork this repository.
-
Clone the forked repository.
git clone https://github.com/<YOUR_USERNAME_HERE>/fosscord-docs
-
Install dependencies.
python3 -m pip install mkdocs-material mkdocs-swagger-ui-tag mkdocs-section-index
-
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.
-
Test locally.
-
Serve in http://127.0.0.1:8000 with hot reload:
python3 -m mkdocs serve
-
Build for production:
python3 -m mkdocs build
-
-
Commit changes with good commit messages.
-
Create a pull request.