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
- Host: GitHub
- URL: https://github.com/pgrouting/website
- Owner: pgRouting
- Created: 2010-10-30T12:52:15.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2025-03-02T23:38:21.000Z (over 1 year ago)
- Last Synced: 2025-05-06T18:06:04.188Z (about 1 year ago)
- Language: CSS
- Homepage: https://pgrouting.org
- Size: 5.26 MB
- Stars: 25
- Watchers: 13
- Forks: 29
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Support: support.rst
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/)