馃帀 Contribute to OpenDroneMap's documentation! Read how below! 馃帀
 
 
 
Go to file
danbjoseph 0b7521e682 basic doc structure in sphinx 2018-03-11 12:49:17 -04:00
source basic doc structure in sphinx 2018-03-11 12:49:17 -04:00
.gitignore basic doc structure in sphinx 2018-03-11 12:49:17 -04:00
Makefile basic doc structure in sphinx 2018-03-11 12:49:17 -04:00
README.md basic doc structure in sphinx 2018-03-11 12:49:17 -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

(on OSX)

# install python
brew install python3
# check installation
python --version
# 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

Go to the logged URL to access your site (e.g. http://127.0.0.1:8000). To stop the server simply press Ctrl+C.