Richard commited on
Commit
dc4b9e8
·
1 Parent(s): f3d45a9

Update readme to reflect updated repo structure

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -22,8 +22,7 @@ The Mesop App Maker consists of two Mesop apps, the editor and the app runner.
22
  The editor is the Mesop app that allows you to generate, edit, and view Mesop apps.
23
 
24
  ```shell
25
- cd editor
26
- pip install -r requirements.txt # First time only
27
  mesop main.py
28
  ```
29
 
@@ -38,6 +37,7 @@ The [Mesop App Runner](https://github.com/richard-to/mesop-app-runner) uses Dock
38
  It can be started using these commands:
39
 
40
  ```shell
 
41
  docker stop mesop-app-runner;
42
  docker rm mesop-app;
43
  docker build -t mesop-app-runner . && docker run --name mesop-app-runner -d -p 8080:8080 mesop-app-runner;
 
22
  The editor is the Mesop app that allows you to generate, edit, and view Mesop apps.
23
 
24
  ```shell
25
+ pip install -r requirements.txt
 
26
  mesop main.py
27
  ```
28
 
 
37
  It can be started using these commands:
38
 
39
  ```shell
40
+ # In mesop-app-runner directory
41
  docker stop mesop-app-runner;
42
  docker rm mesop-app;
43
  docker build -t mesop-app-runner . && docker run --name mesop-app-runner -d -p 8080:8080 mesop-app-runner;