Created
March 7, 2012 20:46
-
-
Save Artforge/1996080 to your computer and use it in GitHub Desktop.
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 characters
| # Install PostgreSQL and PostGIS Via Homebrew | |
| # One click installer seems to fail to get PostGIS installed. | |
| # Download GISGraphy Binaries from http://www.gisgraphy.com/download/ | |
| # Move unzipped directory into /src/gisgraphy | |
| # INITIALIZE TABLES | |
| psql -U postgres -d gisgraphy -h 127.0.0.1 -f /src/gisgraphy/sql/create_tables.sql | |
| # INITIALIZE USERS | |
| psql -U postgres -d gisgraphy -h 127.0.0.1 -f /src/gisgraphy/sql/insert_users.sql | |
| # Edit the username and password jdbc.properties file to suit your installation | |
| mate /src/gisgraphy/webapps/ROOT/WEB-INF/classes/jdbc.properties | |
| # If you want to edit the environment properties of the Gisgraphy distribution | |
| # more info - http://www.gisgraphy.com/documentation/user-guide.htm#options | |
| mate /src/gisgraphy/webapps/ROOT/WEB-INF/classes/env.properties | |
| # START GisGrpahy | |
| /src/gisgraphy/launch.sh | |
| Woohoo! It Works |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
wohoo