馃帀 Contribute to OpenDroneMap's documentation! Read how below! 馃帀
 
 
 
Go to file
Stephen Mather e4dc29de17
Merge pull request #10 from OpenDroneMap/dakotabenjamin-patch-1
Add info about custom splits
2018-10-22 12:26:48 -04:00
source Add info about custom splits 2018-09-24 12:50:29 -04: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.