File: Readme.md

package info (click to toggle)
pgrouting 2.3.2%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 20,624 kB
  • ctags: 3,244
  • sloc: cpp: 86,010; sql: 30,138; ansic: 9,711; python: 3,105; perl: 1,307; sh: 957; xml: 182; makefile: 126
file content (54 lines) | stat: -rw-r--r-- 893 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54

Vagrant - Virtualized Development for pgRouting


1. Install

Just download and install a binary package from the [Vagrant website](http://docs.vagrantup.com/v2/installation/)

For example on Debian squeeze 32bit system:

```
mkdir work
cd work
wget -N http://files.vagrantup.com/packages/7e400d00a3c5a0fdf2809c8b5001a035415a607b/vagrant_1.2.2_i686.deb
sudo dpkg -i vagrant_1.2.2_i686.deb
sudo apt-get install virtualbox
vagrant box add precise32 http://files.vagrantup.com/precise32.box
cd /path/to/pgrouting
```

2. Run 

Start the virtual machine:

```
vagrant up
```

or if you are using precise32

```
BOX=precise32 vagrant up
```

Then login with (Using ssh agent forwarding):

```
vagrant ssh
```

Move to shared directory:

```
cd /vagrant
```


23 Build pgRouting

```
tools/vagrant/build.sh
```

Read more about Vagrant in their [official documentation](http://docs.vagrantup.com).