Skip to content

Commit 00b2606

Browse files
authored
Merge pull request #100 from nemozak1/develop
Opey II widget integration
2 parents 500e6ff + aacfdc0 commit 00b2606

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+19502
-99487
lines changed

.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ VITE_OBP_REDIS_URL = redis://127.0.0.1:6379
3232
# To do this:
3333
VITE_CHATBOT_ENABLED=false
3434
VITE_CHATBOT_URL=http://localhost:5000
35+
VITE_OPEY_CONSUMER_ID=opey_consumer_id # For granting a consent to Opey
3536

3637
# Product styling setting
3738
#VITE_OBP_LINKS_COLOR="#52b165"

.gitignore

+18-3
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,33 @@ coverage
3131
*.sw?
3232

3333
#files from npm-run-build
34-
package-lock.json
3534
tsconfig.app.tsbuildinfo
3635
tsconfig.vitest.tsbuildinfo
3736
tsconfig.node.tsbuildinfo
3837
vite.config.d.ts
3938
vite.config.js
4039
vitest.config.d.ts
41-
vitest.config.js
4240
components.d.ts
4341

4442
#keys
4543
*.pem
4644
private_key.pem
4745
public_key.pem
48-
./server/cert/*
46+
./server/cert/*
47+
48+
#playwright
49+
playwright-report/
50+
.auth/
51+
test-results/
52+
__snapshots__/
53+
54+
.vite/deps
55+
__snapshots__/
56+
57+
# Playwright auth
58+
src/test/integration/playwright/.auth
59+
src/test/integration/playwright/.auth/
60+
**/playwright/.auth/
61+
test-results/
62+
playwright-report/
63+
playwright-coverage/

0 commit comments

Comments
 (0)