File tree 2 files changed +2
-13
lines changed
2 files changed +2
-13
lines changed Original file line number Diff line number Diff line change @@ -53,15 +53,7 @@ To run the script with existing images of the different services based on the
53
53
./start-client
54
54
```
55
55
56
- A developer who is adding some functionality or fixing some bug in the ` nightfall-client ` repository
57
- should run the script in development mode with the changes in his local ` nightfall-client `
58
- repository with binding his local files:
59
-
60
- ```
61
- ./start-client -d
62
- ```
63
-
64
- Also for development purposes you can pass CIRCUIT_FILES_URL and CONTRACT_FILES_URL.
56
+ For development purposes you can pass CIRCUIT_FILES_URL and CONTRACT_FILES_URL.
65
57
66
58
```
67
59
CIRCUIT_FILES_URL=url of the repository for the circuit files
Original file line number Diff line number Diff line change 10
10
fi
11
11
12
12
VOLUME_LIST=$( docker volume ls -q)
13
- FILE=" -f ../docker-compose.client.yml"
13
+ FILE=" -f ../docker-compose.client.yml -f ../docker-compose.client.dev.yml "
14
14
15
15
usage ()
16
16
{
17
17
echo " Usage:"
18
- echo " -d or --dev; to bind mount the filesystem and use it for development"
19
18
echo " -r; to remove existing volumes for mongodb and abi contracts"
20
19
}
21
20
22
21
while [ -n " $1 " ]; do
23
22
case $1 in
24
- -d | --dev ) DEV=" -f ../docker-compose.client.dev.yml"
25
- ;;
26
23
-r ) REMOVE_VOLUMES=" true"
27
24
;;
28
25
-h | --help ) usage
You can’t perform that action at this time.
0 commit comments