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
| # Configure Postgres | |
| # | |
| # create a postgres database for the records | |
| createdb sailwx | |
| # make the new database PostGIS compatible (here, against Postgres 8.4) | |
| git clone https://github.com/straup/postgis-tools | |
| cd postgis-tools | |
| sh ./createdb-8.4.sh sailwx sailwx |
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
| #!/usr/bin/env bash | |
| for file in `find . -name "*.env"`; do | |
| # we want the name without the '.env' bit | |
| base=`basename $file .env` | |
| echo $base | |
| done |
NewerOlder