An open API service indexing awesome lists of open source software.

https://github.com/pgrouting/website

Repository to deploy pgRouting website using Sphinx/ReST
https://github.com/pgrouting/website

Last synced: about 1 year ago
JSON representation

Repository to deploy pgRouting website using Sphinx/ReST

Awesome Lists containing this project

README

          

# pgRouting - Website

This readme describes how to setup the [pgRouting website](https://pgrouting.org) on Debian/Ubuntu server.

## Installation

* Install Sphinx/ReST

```bash
sudo apt-get install python-sphinx texlive-latex-base
```

* Checkout source code from Git repository

```bash
git clone git://github.com/pgRouting/website.git website
```

* Build website in HTML

```bash
cd website
make html
```

* Upload the website to gh-pages branch

```bash
git checkout gh-pages
cp -r _build/html/* .
git add
git commit -a -m ""
git push origin gh-pages
```

## License

Copyright(c) pgRouting Contributors

This documentation is licensed under a [Creative Commons Attribution-Share Alike 3.0 License](https://creativecommons.org/licenses/by-sa/3.0/)