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
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,17 @@ With [`sbt`](https://www.scala-sbt.org/download.html) and [`git`](https://git-sc
100
100
> sbt package
101
101
```
102
102
103
+
## How to build and see the doc pages using a local server
104
+
105
+
Run this in linux bash terminal:
106
+
```
107
+
sbt doc && cd target/scala-3.3.3/api && python3 -m http.server 8080
108
+
```
109
+
Open Firefox and type this url in the address field:
110
+
```
111
+
http://localhost:8080/
112
+
```
113
+
103
114
## Intentions and philosophy behind introprog-scalalib
104
115
105
116
This repo includes utilities to empower learners to advance from basic to intermediate levels of computer science by providing easy-to-use constructs for creating simple desktop apps in terminal and using simple 2D graphics. The utilities are implemented and exposed through an api that follows these guidelines:
0 commit comments