To install the repository, follow these steps:
- Clone the repository by running:
git clone git@github.com:skysqlinc/skysql-docs.git
One option for local debugging is to use the VS Code Markdown extension. Please note that this method allows you to preview only the current page.
Another option is to use MkDocs for local debugging. Follow these steps:
- Install MkDocs by running:
pip install mkdocs
- Install the MkDocs Material theme by running:
pip install mkdocs-material
- Serve the documentation locally by running:
mkdocs serve
When making changes:
- Create a new branch for your changes:
git checkout -b new-branch-name
- Test your changes locally.
- Commit your changes:
git add .
git commit -m "Your commit message"
- Push your changes to the remote repository:
git push origin new-branch-name
- Create a pull request for your changes to be reviewed and merged into the main branch.