Skip to content

Commit

Permalink
Merge pull request #27 from tetherless-world/master
Browse files Browse the repository at this point in the history
Put back some changes to default_vocab.ttl
  • Loading branch information
jpmccu authored Mar 21, 2018
2 parents b3c93c0 + d208b5a commit df09e97
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
11 changes: 11 additions & 0 deletions default_vocab.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,17 @@



dc:description rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty .

rdfs:label rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty .

foaf:mbox rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty .



### http://vocab.rpi.edu/flaskld/hasOwner

flaskld:hasOwner rdf:type owl:ObjectProperty ;
Expand Down
23 changes: 23 additions & 0 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,46 @@ Whyis installations are currently supported on Ubuntu >= 14.04.

This is useful for deploying production knowledge graphs, or for developers who already have a machine (virtual or otherwise) that is ready to run Whyis.

```
bash < <(curl -skL https://raw.githubusercontent.com/tetherless-world/whyis/release/install.sh)
```

To install using the development branch of Whyis, use the master install script:

```
bash < <(curl -skL https://raw.githubusercontent.com/tetherless-world/whyis/master/install.sh)
```



## Layer 3: Install into a vagrant virtual machine

This is useful for developers who want to isolate their development environment so that builds are repeatable, and for developers of multiple knowledge graphs.

You will need to install vagrant and virtualbox.

```
mkdir whyis-vm && cd whyis-vm
curl -skL https://raw.githubusercontent.com/tetherless-world/whyis/release/Vagrantfile > Vagrantfile
curl -skL https://raw.githubusercontent.com/tetherless-world/whyis/release/install.sh > install.sh
vagrant up
```

To install using the development branch of Whyis, use the master install script:

```
mkdir whyis-vm && cd whyis-vm
curl -skL https://raw.githubusercontent.com/tetherless-world/whyis/master/Vagrantfile > Vagrantfile
curl -skL https://raw.githubusercontent.com/tetherless-world/whyis/master/install.sh > install.sh
vagrant up
```

If you are setting up more than one whyis vm (maybe for multiple projects), be sure to change the IP address in the Vagrantfile after you downloaded but before running `vagrant up`:

```
config.vm.network "private_network", ip: "192.168.33.36"
```

# Administrative Tasks

To peform the following administrative tasks, you need to connect to the VM (if you're not running directly):
Expand Down

0 comments on commit df09e97

Please sign in to comment.