Skip to content

Commit

Permalink
[#71] Update readme to include information about postgres db
Browse files Browse the repository at this point in the history
  • Loading branch information
omar-carey-tw committed Jan 30, 2020
1 parent 5925cde commit 4c50e76
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,18 @@ Once onboard a team member will give download access, `json` file for testing pu
If set up properly, hitting scrape should output 'success' message in browser.
Note: JSON file has been added to the `.gitignore` as it **is not to be committed**, use naming convention as above
### Postgres Database
1. Install Postgres App and Postgres
2. Run the following commands to create DB:
```
psql -c "create user invisible_flow;"
psql -c "create database invisible_flow_testing with owner invisible_flow;"
```
3. Connect to invisible_flow_testing and run following command:
```
CREATE EXTENSION postgis;
```
Note: Sometimes after pulling most recent commits, you will need to recreate postgis extension

0 comments on commit 4c50e76

Please sign in to comment.