Skip to content

Commit 98f4353

Browse files
committed
Fixed formatting
1 parent 07d3304 commit 98f4353

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

docker/readme.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ cd ../
1212
## Run the image as a container
1313

1414
Assumptions:
15+
1516
- `$PWD` is code-generator source root folder
1617
- To replace `/host/path/to/data` with a path to the input data (for example CIFAR10 and/or VOCdevkit etc), e.g. `/mnt/data`
1718

@@ -21,22 +22,27 @@ docker run --name=codegen-dev -it -v $PWD:/code -w /code -v /host/path/to/data:/
2122
```
2223

2324
Inside the container we can install all other project dependencies:
25+
2426
```bash
2527
git config --global --add safe.directory /code
2628

2729
pnpm i --frozen-lockfile --color
2830
pnpm build
31+
32+
bash scripts/run_code_style.sh install
2933
```
3034

3135
- Local app deployment
36+
3237
```
3338
pnpm dev
3439
```
3540

3641
- Run ci tests locally
42+
3743
```
3844
pnpm test:ci
3945
4046
sh ./scripts/run_tests.sh unzip
4147
sh ./scripts/run_tests.sh simple vision-classification
42-
```
48+
```

0 commit comments

Comments
 (0)