From e95b82eb28cc3f834bb37449677c0b0fd0ae658a Mon Sep 17 00:00:00 2001 From: Malachi Griffith Date: Thu, 27 Jul 2017 11:22:36 -0500 Subject: [PATCH] fix some typos and add a note about the wiki --- INSTALL-LINUX | 4 ++-- INSTALL-OSX | 2 +- README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/INSTALL-LINUX b/INSTALL-LINUX index 30982606..acecc428 100644 --- a/INSTALL-LINUX +++ b/INSTALL-LINUX @@ -1,4 +1,4 @@ -#Dvelopment installation for Ubunutu 12.04 LTS +#Development installation for Ubunutu 12.04 LTS #set locale - this section is probably only needed if you're using the vagrant precise64 box #and will need to happen before you install postgres @@ -53,7 +53,7 @@ bundle install rbenv rehash rake dgidb:load_local -#Occassionally the database may get into a confused state and this rake command no longer works properly +#Occasionally the database may get into a confused state and this rake command no longer works properly #In that case you can try this: psql -h localhost -d dgidb -f db/structure.sql psql -h localhost -d dgidb -f data/data.sql diff --git a/INSTALL-OSX b/INSTALL-OSX index 2ec0af16..f27cf2ac 100644 --- a/INSTALL-OSX +++ b/INSTALL-OSX @@ -52,7 +52,7 @@ bundle install #update the local database rake dgidb:load_local -#Occassionally the database may get into a confused state and this rake command no longer works properly +#Occasionally the database may get into a confused state and this rake command no longer works properly #In that case you can try this: psql -h localhost -d dgidb -f db/structure.sql psql -h localhost -d dgidb -f data/data.sql diff --git a/README.md b/README.md index f875ea4c..75e9689e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ To use DGIdb please first visit the public instance here: [DGIdb](http://www.dgidb.org/ "DGIdb at WashU") #### Installation -If you would like to install a local instance of DGIdb to work on the code or maintain a private database, refer to the [INSTALL-OSX](https://github.com/genome/dgi-db/blob/master/INSTALL-OSX "INSTALL-OSX") or [INSTALL-LINUX](https://github.com/genome/dgi-db/blob/master/INSTALL-LINUX "INSTALL-OSX") files for installation instructions. If the public version of DGIdb is missing a datasource that you would like to see added, please [Contact Us](http://dgidb.genome.wustl.edu/contact "Contact Us"). +If you would like to install a local instance of DGIdb to work on the code or maintain a private database, refer to the [INSTALL-OSX](https://github.com/genome/dgi-db/blob/master/INSTALL-OSX "INSTALL-OSX") or [INSTALL-LINUX](https://github.com/genome/dgi-db/blob/master/INSTALL-LINUX "INSTALL-OSX") files for installation instructions. Additional installation and developer documentation can be found in the [dgi-db wiki](https://github.com/griffithlab/dgi-db/wiki "dgi-db wiki"). If the public version of DGIdb is missing a datasource that you would like to see added, please [Contact Us](http://dgidb.genome.wustl.edu/contact "Contact Us"). #### Implementation DGIdb is built in Ruby on Rails with PostgreSQL as the primary data store. Memcached is utilized heavily for caching, as the data is largely static between new source imports. The site is served with Apache and Phusion Passenger on a server running Ubuntu 12.04 LTS (Precise Pangolin). The code itself is divided into two primary components – the web application itself and the libraries that handle the importing and normalization of new sources.