blob: d44fd9b26da7cb460d4f5a02f98051d54ef88ad7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# The web component
## How to run in your local env:
### Requirements
1. docker (or local mongodb install)
2. npm
#### Steps
1. Spawn up a docker container with mongodb
`docker run -d --name mymongo -p 27017:27017 mongo`
2. enter inside the container:
`docker exec -it mymongo mongo`
3. run inside the interactive mongo shell:
`use helpthehome`
4. Now you are ready to start the app:
From this directory:
`npm install`
`npm start`
Then open your browser to `localhost:3000`
You should be greeted with a page with a map.
## You can view the current latest production site on Heroku (master branch)
[here]()
## You can view the current latest QA site on Heroku (qa branch)
[here]()
|