fastlane docs
This repository contains all documentation for fastlane. You can access the .md files inside the docs folder.
To preview the updated documentation locally, just clone the repo, modify the file, and run the command. Note that some of the files are in generated folder and are later copied with mkdocs pre-build hook.
mkdocs serve
The live version is available on docs.fastlane.tools.
Why new docs?
You can find more information here
Deploy changes
Once a pull request (PR) is merged into master, the latest version will automatically be deployed to docs.fastlane.tools by one of the hard-working fastlane bots. There is no need to perform any manual actions. The resulting HTML files are stored in the gh-pages branch.
Installation of mkdocs
brew install pipenv
pipenv --three
# install dependencies from Pipfile.lock and run shell
pipenv install
pipenv shell
Adding a Python dependency
Likely, to add a Markdown extension, install it with pipenv install after making sure the virtualenv is loaded (pipenv shell).