Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
02c371e
add upload artifact step
Inglan Sep 23, 2025
33f3a25
also run build on push
Inglan Sep 23, 2025
e3ffdd2
comment out sidebar auth
Inglan Sep 23, 2025
2caaf8a
remvoe more references to clerk
Inglan Sep 23, 2025
d065f60
remove clerk and database from settings
Inglan Sep 23, 2025
8f25350
delete account page
Inglan Sep 23, 2025
a8f2418
remove imports from providers
Inglan Sep 23, 2025
dee498c
remove clerk dep
Inglan Sep 23, 2025
3c67f6a
remove env vars
Inglan Sep 23, 2025
bcfdf70
remove identity
Inglan Sep 23, 2025
39f63fe
remove accounts from backups page
Inglan Sep 23, 2025
86cdaa3
remove move clerk dependeciesa
Inglan Sep 23, 2025
77ad8d2
remove npm package lock
Inglan Sep 23, 2025
eba8723
remove users table
Inglan Sep 23, 2025
a71b060
remove from privacy policy
Inglan Sep 23, 2025
087ca49
remove form copilot instructions
Inglan Sep 23, 2025
c628240
remove clerk from privacy policy more
Inglan Sep 23, 2025
2ca6ac5
remove from privacy policy even more
Inglan Sep 23, 2025
b55e4ce
delete sidebar auth compoennt
Inglan Sep 23, 2025
42defaa
comment out all backend logic
Inglan Sep 23, 2025
0179d91
remove sidebar auth from sidebar
Inglan Sep 23, 2025
295f1bd
remove some backend stuff from settings
Inglan Sep 23, 2025
fad8cec
disable sync
Inglan Sep 23, 2025
97a6495
remove identify
Inglan Sep 23, 2025
ad3423d
reset posthog if user is identified
Inglan Sep 23, 2025
88832c6
remove/disable some functionality
Inglan Sep 23, 2025
4bb02e1
Merge pull request #530 from EducationalTools/529-remove-existing-aut…
Inglan Sep 23, 2025
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
1 change: 0 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
PUBLIC_CLERK_PUBLISHABLE_KEY=pk_something
CONVEX_DEPLOYMENT=dev:something
PUBLIC_CONVEX_URL=https://something.convex.cloud
2 changes: 0 additions & 2 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ EduTools is a SvelteKit-based web application that provides various educational
Create a `.env` file based on `.env.example`:

```bash
PUBLIC_CLERK_PUBLISHABLE_KEY=pk_something
CONVEX_DEPLOYMENT=dev:something
PUBLIC_CONVEX_URL=https://something.convex.cloud
```
Expand Down Expand Up @@ -215,7 +214,6 @@ PUBLIC_CONVEX_URL=https://something.convex.cloud

## Security Considerations

- Uses Clerk for authentication (when configured)
- Report security issues via GitHub Security Advisories
- Environment variables contain sensitive keys - never commit .env files
- Static games/tools should be reviewed for security if user-generated content is involved
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/beta_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:

- name: Build
env:
PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.PUBLIC_CLERK_PUBLISHABLE_KEY }}
PUBLIC_CONVEX_URL: ${{ secrets.PUBLIC_CONVEX_URL }}
run: |
pnpm run build
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Build

on:
pull_request:
push:

jobs:
build:
Expand All @@ -22,7 +23,11 @@ jobs:

- name: Build
env:
PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.PUBLIC_CLERK_PUBLISHABLE_KEY }}
PUBLIC_CONVEX_URL: ${{ secrets.PUBLIC_CONVEX_URL }}
run: |
pnpm run build

- uses: actions/upload-artifact@v4
with:
name: Build
path: ./build
1 change: 0 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:

- name: Build
env:
PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.PUBLIC_CLERK_PUBLISHABLE_KEY }}
PUBLIC_CONVEX_URL: ${{ secrets.PUBLIC_CONVEX_URL }}
run: |
pnpm run build
Expand Down
Loading