馃帀 Contribute to OpenDroneMap's documentation! Read how below! 馃帀
 
 
 
Go to file
Dan Joseph 7bbbf8577c
Merge pull request #6 from pierotofy/patch-2
Typo
2018-05-18 19:22:18 -04:00
source Typo 2018-05-18 16:16:54 -05:00
.gitignore update gitignore 2018-03-11 14:36:34 -04:00
.travis.yml Update .travis.yml 2018-03-20 09:58:38 -04:00
Makefile travis-ci setup 2018-03-11 14:33:15 -04:00
README.md update readme to trigger travis 2018-03-13 11:12:01 -04:00
requirements.txt basic doc structure in sphinx 2018-03-11 12:49:17 -04:00

README.md

OpenDroneMap Docs

Documentation for OpenDroneMap.

Development

Environment

(on OSX)

# 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

More on virtualenv.

Use sphinx-autobuild to automatically watch for changes and rebuild the html site using:

make livehtml

To stop the server press Ctrl+C.

Travis-CI

Travis-CI docs for Building a Python Project and GitHub Pages Deployment. 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.