Skip to content

Commit 4efb58c

Browse files
committed
Update README.md
1 parent c84e548 commit 4efb58c

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Go into the project directory and run the command:
3535
```bash
3636
flask run
3737
```
38+
3839
### Database
3940

4041
_Geofinder_ uses a Postgres database. Once provisioned, use your preferred DBMS to execute the queries in `database/sql.txt` to install PostGIS and to create the database's schema and tables. Then use `database/geofinderdata.csv` to populate the `locs` table.
@@ -51,7 +52,18 @@ For the embedded maps to work, you need to use your own API Key. Before you can
5152

5253
### Environment Variables
5354

54-
Tbd
55+
Set up the following environment variables using your preferred method.
56+
57+
```text
58+
SECRET_KEY=<Your_Flask_Session_Secret_Key>
59+
MAP_API_KEY=<Your_Google_Maps_API_Key>
60+
GEOFINDER_DB_HOST=<Your_Database_Host>
61+
GEOFINDER_DB_PORT=5432
62+
GEOFINDER_DB_NAME=<Your_Database_Name>
63+
GEOFINDER_DB_USER=<Your_Database_Username>
64+
GEOFINDER_DB_PASSWORD=<Your_Database_Password>
65+
NEW_REGISTRATIONS=TRUE
66+
```
5567

5668
## Author(s)
5769

0 commit comments

Comments
 (0)