OpenDroneMap-docs/README.md

35 wiersze
1.1 KiB
Markdown
Czysty Zwyk艂y widok Historia

2018-03-11 16:49:17 +00:00
## OpenDroneMap Docs
Documentation for [OpenDroneMap](https://github.com/OpenDroneMap/OpenDroneMap).
2018-03-11 18:33:15 +00:00
## Development
### Environment
2018-03-11 16:49:17 +00:00
_(on OSX)_
```bash
# install python
brew install python3
# install virtualenv
pip install virtualenv
# create Python environment
virtualenv -p /usr/local/bin/python3 venv
# open the Python environment
source venv/bin/activate
# install requirements
pip install -r requirements.txt
```
2018-03-13 15:12:01 +00:00
2018-03-11 16:49:17 +00:00
More on [`virtualenv`](https://virtualenv.pypa.io/en/stable/).
Use [`sphinx-autobuild`](https://github.com/GaretJax/sphinx-autobuild) to automatically watch for changes and rebuild the html site using:
```
make livehtml
```
2018-03-13 15:12:01 +00:00
2018-03-11 18:33:15 +00:00
To stop the server press `Ctrl+C`.
2018-03-11 16:49:17 +00:00
2018-03-11 18:33:15 +00:00
### Travis-CI
2018-03-11 16:49:17 +00:00
2018-03-11 18:33:15 +00:00
Travis-CI docs for [Building a Python Project](https://docs.travis-ci.com/user/languages/python/) and [GitHub Pages Deployment](https://docs.travis-ci.com/user/deployment/pages/). Personal access token with 'public_repo - Access public repositories' permissions created and used it in `travis encrypt GH_TOKEN=my_github_token --add env.matrix` as described in the [Travis-CI docs](https://docs.travis-ci.com/user/environment-variables#Encrypting-environment-variables).