Forked from palexander/new_bioportal_config_options.rb
Created
August 11, 2010 21:24
-
-
Save palexander/519801 to your computer and use it in GitHub Desktop.
Revisions
-
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ # Organization info $ORG = "NCBO" $ORG_URL = "http://www.bioontology.org" # Site name (required) $SITE = "BioPortal" # The URL for the BioPortal Rails UI (this application) $UI_URL = "http://bioportal.bioontology.org" # Full string for site, EX: "NCBO BioPortal" (auto-generated, don't modify) $ORG_SITE = ($ORG.nil? || $ORG.empty?) ? $SITE : "#{$ORG} #{$SITE}" # If you are running a PURL server to provide URLs for ontologies in your BioPortal instance, enable this option $PURL_ENABLED = true # The PURL URL is generated using this prefix + the abbreviation for an ontology. $PURL_PREFIX = "http://purl.bioontology.org/ontology" # If your BioPortal installation includes OBS (Annotator, Resource Index), enable this option $OBS_ENABLED = true