Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit fef238a

Browse files
Clinton Blackburnclintonb
authored andcommitted
Updated README
ECOM-6560
1 parent 6d12100 commit fef238a

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ devstack.provision: ## Provision all services
1818
devstack.reset: ## Remove all service containers
1919
docker-compose down
2020

21-
devstack.start: ## Start all services
21+
devstack.start: loopback ## Start all services
2222
docker-compose up
2323

2424
devstack.stop: ## Stop all services

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,16 @@ This project is meant to replace the traditional Vagrant VM "devstack" with a mu
88

99
All of the services can be run by following the steps below.
1010

11-
1. Run the provision command, if you haven't already, to configure the various services with super-users (for
11+
1. The Docker Compose file mounts a host volume for each service's executing code. The host directory is expected to be
12+
a sibling of this directory. For example, if this repo is cloned to `~/workspace/devstack`, host volumes will be
13+
expected in `~/workspace/course-discovery`, `~/workspace/ecommerce`, etc. These repos can be cloned with the command
14+
below.
15+
16+
```
17+
$ make clone
18+
```
19+
20+
2. Run the provision command, if you haven't already, to configure the various services with super-users (for
1221
development without the auth service) and tenants (for multi-tenancy).
1322

1423
The username and password for the superusers are both "edx". You can access the services directly via Django admin
@@ -18,7 +27,7 @@ All of the services can be run by following the steps below.
1827
$ make devstack.provision
1928
```
2029
21-
2. Start the services.
30+
3. Start the services.
2231
2332
```
2433
$ make devstack.start

0 commit comments

Comments
 (0)