This repository contains the documentation and knowledge base for the Hot Tub app. Here, you will find comprehensive guides, API references, and other resources to help you understand and utilize the features of the Hot Tub platform effectively.
The docs site is built with MkDocs which generates static sites from markdown files. Super easy, super cool, very nice.
Basically it means we (or you) can quickly and easily update documentation or other resources.
You can get the site up and running locally in just a couple steps:
- Clone the repo
git clone https://github.com/hottubapp/docs.git hottubapp-docs- Change directories into the pulled repository
cd ./hottubapp-docs- Install the dependencies
pip install -r requirements.txt- Serve MkDocs locally
mkdocs serve -a 127.0.0.1:8000With any luck, the site should now be running on your local machine on port 8000. Play around, make the changes you want, and send them our way!
To contribute your changes to the documentation:
-
Fork the repository
- Go to the Hot Tub Docs repository
- Click the "Fork" button in the top right
- This creates your own copy of the repository
-
Clone your fork
git clone https://github.com/YOUR-USERNAME/docs.git
cd docs- Create a new branch for your changes
git checkout -b your-branch-name- Make your changes and commit them
git add .
git commit -m "Description of your changes"- Push your branch to your fork
git push origin your-branch-name- Create a Pull Request
- Go to your fork on GitHub
- Click "New Pull Request"
- Select your branch
- Fill in the PR description with details about your changes
- Submit the PR for review
We'll review your changes and merge them if everything looks good. Thanks for contributing!