Skip to content

Commit 96d71df

Browse files
committed
fix: remove -d option in start-client
1 parent d161ce6 commit 96d71df

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

‎nightfall-client/README.md

+1-9
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,7 @@ To run the script with existing images of the different services based on the
5353
./start-client
5454
```
5555

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.
6557

6658
```
6759
CIRCUIT_FILES_URL=url of the repository for the circuit files

‎nightfall-client/start-client

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,16 @@ else
1010
fi
1111

1212
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"
1414

1515
usage()
1616
{
1717
echo "Usage:"
18-
echo " -d or --dev; to bind mount the filesystem and use it for development"
1918
echo " -r; to remove existing volumes for mongodb and abi contracts"
2019
}
2120

2221
while [ -n "$1" ]; do
2322
case $1 in
24-
-d | --dev ) DEV="-f ../docker-compose.client.dev.yml"
25-
;;
2623
-r ) REMOVE_VOLUMES="true"
2724
;;
2825
-h | --help ) usage

0 commit comments

Comments
 (0)