Skip to content

Commit 034a487

Browse files
committed
Some more docs
1 parent b7ee1c3 commit 034a487

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

DEVELOPMENT.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,24 @@ or, if you have already cloned it, get submodules contents :
99
git submodule init; git submodule update
1010
```
1111

12-
# Run in local
12+
# Test local code
13+
14+
## Test-run in container rebuilt from local repo
15+
16+
You may edit the code in your local copy of the repo, rebuild the
17+
container, and test the changes:
18+
1319
```
1420
make clean
1521
FLAVOR=lxqt ARCH=amd64 IMAGE=ubuntu:18.04 make build
1622
make run
1723
```
1824

1925
## develop backend
26+
27+
You may wish to work on the backend app. As the "make run" makes sure
28+
to mount the current dir contents under /src in the container, you can
29+
proceed as such (no compilation of the Python code):
2030
```
2131
make shell
2232
supervisorctl -c /etc/supervisor/supervisord.conf stop web
@@ -25,6 +35,7 @@ cd /src/image/usr/local/lib/web/backend
2535
```
2636

2737
## develop frontend
38+
2839
```
2940
cd web
3041
yarn add

0 commit comments

Comments
 (0)