Skip to content

Commit 5e00a80

Browse files
committed
add short description of local pin/upgrade workflow
1 parent dd74d4b commit 5e00a80

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,29 @@ Alternatively, the provided Docker image may be used:
1818
docker pull ghcr.io/just-max/less-power:main
1919
```
2020

21+
# Development
22+
23+
To make changes to the framework, first clone this repository. Then add a local pin:
24+
25+
```sh
26+
opam pin add less-power ~/path/to/less-power
27+
```
28+
29+
While developing, use `dune` to build:
30+
31+
```sh
32+
dune build # regular build
33+
dune build @doc # build docs
34+
dune build test # run tests
35+
```
36+
37+
To use your local changes while developing a programming exercise:
38+
39+
```sh
40+
dune build @install # prepare for install
41+
opam upgrade --working-dir less-power # make changes available
42+
```
43+
2144
## Deployment
2245

2346
For running real programming courses, programming exercises built for the Less Power framework are best run with [Artemis](https://github.com/ls1intum/Artemis). Artemis is an interactive learning platform that handles student participation and provides CI-based automated testing.

0 commit comments

Comments
 (0)