Skip to content

Commit

Permalink
major rewrite into 10 simple files. typedoc added.
Browse files Browse the repository at this point in the history
  • Loading branch information
vtempest committed Dec 8, 2024
1 parent b02af37 commit 7a6fa2e
Show file tree
Hide file tree
Showing 726 changed files with 2,709 additions and 3,263 deletions.
7 changes: 7 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
PUBLIC_DOMAIN = "localhost:5173"
LOG_LEVEL="debug"

# API Keys
GOOGLE_CLIENT_ID=""
GOOGLE_CLIENT_SECRET=""
RESEND_API_KEY=""
15 changes: 6 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
.DS_Store
node_modules
/build
/dist
/.svelte-kit
/package
.env
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
.wrangler
wrangler.toml
test_suite_analysis
managed_context
coverage
playwright-report
vite.config.*.timestamp-*
.cloudflare
wrangler.toml
.wrangler
bun.lockb
web-app/data/*
migrations/*
Binary file modified bun.lockb
Binary file not shown.
27 changes: 15 additions & 12 deletions components.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
{
"$schema": "https://shadcn-svelte.com/schema.json",
"style": "default",
"tailwind": {
"config": "tailwind.config.js",
"css": "src/app.pcss",
"baseColor": "neutral"
},
"aliases": {
"components": "$components",
"utils": "$lib/utils/style-transitions"
},
"typescript": true
"$schema": "https://shadcn-svelte.com/schema.json",
"style": "default",
"tailwind": {
"config": "tailwind.config.js",
"css": "src/app.pcss",
"baseColor": "neutral"
},
"aliases": {
"components": "$components",
"utils": "./src/lib/utils",
"ui": "./src/lib/components/ui",
"hooks": "./src/lib/hooks"
},
"typescript": true,
"registry": "https://next.shadcn-svelte.com/registry"
}
1 change: 0 additions & 1 deletion docs/CNAME

This file was deleted.

2 changes: 1 addition & 1 deletion docs/assets/navigation.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/search.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/classes/lib_components_app.SidebarSettingsNav.html

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions docs/enums/lib_configs_auth-methods.AUTH_METHODS.html

This file was deleted.

Loading

0 comments on commit 7a6fa2e

Please sign in to comment.