You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+23
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,29 @@ Alternatively, the provided Docker image may be used:
18
18
docker pull ghcr.io/just-max/less-power:main
19
19
```
20
20
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
+
21
44
## Deployment
22
45
23
46
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