Skip to content

Commit e89f1fa

Browse files
committed
Revert "Merge pull request #38 from JannikStreek/add-oer-finder-plugin"
This reverts commit 0063b55, reversing changes made to 88dbd20.
1 parent 0063b55 commit e89f1fa

File tree

12 files changed

+14
-248
lines changed

12 files changed

+14
-248
lines changed

.github/workflows/e2e.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ jobs:
2626

2727
- name: Install dependencies
2828
run: pnpm install --frozen-lockfile
29-
env:
30-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3129

3230
- name: Install Playwright Browsers
3331
run: pnpm exec playwright install --with-deps

.github/workflows/pnpm-check.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ jobs:
2828

2929
- name: Install dependencies
3030
run: pnpm install --frozen-lockfile
31-
env:
32-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3331

3432
- name: Run pnpm check
3533
run: pnpm check
@@ -56,8 +54,6 @@ jobs:
5654

5755
- name: Install dependencies
5856
run: pnpm install --frozen-lockfile
59-
env:
60-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6157

6258
- name: Run pnpm build
6359
run: pnpm build

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ jobs:
2828

2929
- name: Install dependencies
3030
run: pnpm install --frozen-lockfile
31-
env:
32-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3331

3432
- name: Install Playwright Browsers
3533
run: pnpm exec playwright install

.npmrc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
11
engine-strict=true
2-
3-
@edufeed-org:registry=https://npm.pkg.github.com
4-
//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}

docker-compose.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
11
services:
2-
# If the app needs to be started via docker compose, uncomment these lines of code and add a Dockerfile
3-
# app:
4-
# tty: true
5-
# stdin_open: true
6-
# build:
7-
# context: .
8-
# dockerfile: Dockerfile
9-
# target: development
10-
# volumes:
11-
# - .:/home/node/app
12-
# ports:
13-
# - "5173:5173"
142
nostr-relay:
153
image: scsibug/nostr-rs-relay:latest
164
ports:

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@
100100
]
101101
},
102102
"dependencies": {
103-
"@edufeed-org/oer-finder-plugin": "^0.0.5",
104103
"@nostr-dev-kit/ndk": "2.14.2",
105104
"@nostr-dev-kit/svelte": "^2.0.8",
106105
"jsoncrush": "^1.1.8",

pnpm-lock.yaml

Lines changed: 0 additions & 73 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/components/OerImagePicker.svelte

Lines changed: 0 additions & 84 deletions
This file was deleted.

src/lib/stores/settingsStore.svelte.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,6 @@ export interface SettingsState {
5959
learningInitialConfidence: number; // Startwert für neue Patterns (Default: 0.3)
6060
learningConfidenceIncrement: number; // Increment bei erfolgreicher Nutzung (Default: 0.15)
6161
learningMinUsageCount: number; // Mindestanzahl Nutzungen für "learned" Status (Default: 3)
62-
63-
oerFinderPlugin: {
64-
apiUrl: string,
65-
language: string
66-
}
6762
}
6863

6964
/**
@@ -174,11 +169,6 @@ KRITISCH: Bei "leg an" / "erstelle" IMMER JSON! NIEMALS nur Text!`,
174169
learningInitialConfidence: 0.3,
175170
learningConfidenceIncrement: 0.15,
176171
learningMinUsageCount: 3,
177-
178-
oerFinderPlugin: {
179-
apiUrl: "http://localhost:3001",
180-
language: "de"
181-
},
182172
};
183173

184174
/**

0 commit comments

Comments
 (0)