Skip to content

Commit dc8675d

Browse files
authored
Merge pull request #14 from TaskarCenterAtUW/onboarding-john-bee
Format fixes for markdown syntax
2 parents 202ca06 + 58f6233 commit dc8675d

File tree

1 file changed

+27
-18
lines changed

1 file changed

+27
-18
lines changed

README.md

Lines changed: 27 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ Replace XXX.env with the environment definition file of the environment for whic
5858
You will need access to prepopulated .env files that are not in version control. Specifically local.dev.env for the rest of these steps, which is assumed to be found in the workspaces-stack root directory.
5959

6060
Add (or merge) the following to your ```/etc/hosts``` file:
61+
6162
```127.0.0.1 localhost workspaces.local api.workspaces.local rapid.workspaces.local osm.workspaces.local pathways.workspaces.local tasks.workspaces.local```
6263

6364
You will also need to increase the total amount of system memory available to Docker containers to 10+ GB. In Docker Desktop you find this in Settings -> Resources -> Memory Limit.
@@ -67,29 +68,37 @@ You will also need to increase the total amount of system memory available to Do
6768
Comment out the ```osm-log-proxy``` section from ```docker-compose.yml``` as aggregate logging is not available locally.
6869

6970
```docker-compose build```
70-
71+
7172
```cp local.dev.env .env```
72-
73+
7374
```docker-compose up -d```
7475

7576
Now we are ready to finalize configuration on each container.
7677

77-
```docker-compose run --rm --entrypoint=bash frontend```
78-
```npm i```
79-
```exit```
80-
81-
```docker-compose run --rm --entrypoint=bash rapid```
82-
```npm i```
83-
```exit```
84-
85-
```docker-compose run --rm --entrypoint=bash pathways-editor```
86-
```npm i```
87-
```exit```
88-
89-
```docker-compose run --rm --entrypoint=bash osm-rails```
90-
```cp /config/example.storage.yml /config/storage.yml```
91-
```bundle install```
92-
```exit```
78+
```
79+
docker-compose run --rm --entrypoint=bash frontend
80+
npm i
81+
exit
82+
```
83+
84+
```
85+
docker-compose run --rm --entrypoint=bash rapid
86+
npm i
87+
exit
88+
```
89+
90+
```
91+
docker-compose run --rm --entrypoint=bash pathways-editor
92+
npm i
93+
exit
94+
```
95+
96+
```
97+
docker-compose run --rm --entrypoint=bash osm-rails
98+
cp /config/example.storage.yml /config/storage.yml
99+
bundle install
100+
exit
101+
```
93102

94103
Note that there are two different ways to run individual containers depending on your dev context.
95104

0 commit comments

Comments
 (0)