Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions docker-compose.ep_weave.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ services:
build:
context: ./images/ep_weave/ep_weave
dockerfile: Dockerfile
args:
- ETHERPAD_IMAGE_TAG=develop
environment:
DB_HOST: ep-weave-postgresql
DB_NAME: etherpad
Expand Down
2 changes: 1 addition & 1 deletion images/ep_weave/ep_weave
Submodule ep_weave updated 40 files
+97 −47 .github/workflows/backend-tests.yml
+104 −0 .github/workflows/e2e-tests.yml
+70 −87 .github/workflows/frontend-tests.yml
+30 −78 .github/workflows/npmpublish.yml
+18 −0 .github/workflows/test-and-release.yml
+13 −0 .github/workflows/test.yml
+8 −0 .gitignore
+4 −0 .gitmodules
+12 −8 Dockerfile
+70 −0 README.md
+7 −0 demo/settings.json
+669 −0 demo/settings.nbsearch.json
+27 −0 docker-compose.nbsearch.yml
+50 −0 docs/notebook-search.md
+2 −0 ep.json
+2,911 −19,854 package-lock.json
+6 −9 package.json
+2,435 −0 pnpm-lock.yaml
+1 −0 solr/Dockerfile
+9 −1 src/common/@types/ep_etherpad-lite/hooks.d.ts
+83 −33 src/index/index.ts
+214 −15 src/pad/index.ts
+81 −0 src/pad/solr-client.ts
+4 −0 src/pad/static/css/index.css
+82 −3 src/pad/static/css/styles.css
+394 −98 src/pad/static/js/hashview.ts
+132 −0 src/pad/static/js/util.ts
+119 −0 static/tests/backend/specs/title.ts
+6 −0 tests/e2e/docker-compose.nbsearch-override.yml
+358 −0 tests/e2e/notebooks/01_Single_Pad.ipynb
+423 −0 tests/e2e/notebooks/02_Multiple_Pads.ipynb
+509 −0 tests/e2e/notebooks/03_Hierarchical_Pads.ipynb
+642 −0 tests/e2e/notebooks/04_NBSearch_Integration.ipynb
+1 −0 tests/e2e/notebooks/scripts/__init__.py
+233 −0 tests/e2e/notebooks/scripts/playwright.py
+3 −0 tests/e2e/requirements.txt
+102 −0 tests/e2e/run_notebooks.py
+19 −0 tests/e2e/scripts/wait-for-services.sh
+1 −0 tests/nbsearch
+661 −0 tests/settings.json
3 changes: 3 additions & 0 deletions images/ep_weave/settings/local.json
Original file line number Diff line number Diff line change
Expand Up @@ -660,6 +660,9 @@
"client_secret": "${EP_WEAVE_OAUTH_CLIENT_SECRET}",
"base_url": "${EP_WEAVE_BASE_URL}"
},
"ep_webrtc": {
"enabled": false
},
"ep_weave": {
"basePath": "/services/ep_weave"
}
Expand Down
Loading