Compare commits

..

1 commit

Author SHA1 Message Date
4ee0345157
feat: Option to serve Bootstrap from the filesystem
All checks were successful
/ pre-commit (push) Successful in 1m7s
Signed-off-by: Julien Riou <julien@riou.xyz>
2025-09-17 06:47:54 +02:00
2 changed files with 11 additions and 0 deletions

View file

@ -19,6 +19,9 @@ archive:
release: build archive release: build archive
dependencies:
npm install
test: test:
(cd src \ (cd src \
&& go test internal/*.go \ && go test internal/*.go \

View file

@ -94,6 +94,12 @@ If you would like to download them to serve them locally:
npm install npm install
``` ```
or via `make`:
```
make dependencies
```
Then configure the local directories: Then configure the local directories:
```json ```json
@ -101,3 +107,5 @@ Then configure the local directories:
"bootstrap_directory": "./node_modules/bootstrap/dist" "bootstrap_directory": "./node_modules/bootstrap/dist"
} }
``` ```
Downloading Monaco Editor is not supported yet.