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
+14-5Lines changed: 14 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,11 +33,20 @@ When developing the OpenConect-devssp itself you can run devssp using the docker
33
33
34
34
Then go to [https://ssp.dev.openconext.local/](https://ssp.dev.openconext.local/).
35
35
The proxy uses a self-signed certificate, so you will need to accept this certificate in your browser.
36
-
37
-
-`./dev-rebuild.sh` will rebuild the container and pull the latest base image
38
-
39
-
Both the `./dev-start.sh` and `./dev-rebuild.sh` scripts will copy the simplesaml directory from the container to `./container-files` on your host. This way you can use xdebug with the actual source files from the container by setting op a local path mapping in your IDE.
40
36
41
-
Then go to [https://ssp.dev.openconext.local/](https://ssp.dev.openconext.local/). The proxy uses a self-signed certificate, so you will need to accept this certificate in your browser.
37
+
## dev-start.sh
38
+
39
+
You can use the `./dev-start.sh` script to start the containers in the background.
40
+
Ths script will copy the contents of the `/var/www` directory in the container to the `container/var/www` directory on
41
+
the host each time the container is started so that source debugging of these files is possible
42
+
from the IDE.
43
+
44
+
With the `-r` option you can force a rebuild of the containers.
45
+
```bash
46
+
./dev-start.sh -r
47
+
```
48
+
49
+
## Debugging
50
+
The container has XDebug installed and configured.
0 commit comments