Skip to content

Commit 83a3797

Browse files
committed
complete overhaul
1 parent 668669b commit 83a3797

78 files changed

Lines changed: 9971 additions & 1169 deletions

Some content is hidden

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

.github/workflows/deploy.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
24+
- name: Setup Bun
25+
uses: oven-sh/setup-bun@v2
26+
with:
27+
bun-version: latest
28+
29+
- name: Install dependencies
30+
run: bun install --frozen-lockfile
31+
32+
- name: Build
33+
run: bun run build
34+
35+
- name: Upload artifact
36+
uses: actions/upload-pages-artifact@v3
37+
with:
38+
path: ./out
39+
40+
deploy:
41+
environment:
42+
name: github-pages
43+
url: ${{ steps.deployment.outputs.page_url }}
44+
runs-on: ubuntu-latest
45+
needs: build
46+
steps:
47+
- name: Deploy to GitHub Pages
48+
id: deployment
49+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# dependencies
2+
node_modules/
3+
.pnp
4+
.pnp.js
5+
6+
# next.js
7+
.next/
8+
out/
9+
10+
# production
11+
build/
12+
dist/
13+
mini-services/
14+
skills/
15+
opencode.json
16+
.codex
17+
# misc
18+
.DS_Store
19+
*.pem
20+
Thumbs.db
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
dev.log
27+
server.log
28+
.pnpm-debug.log*
29+
30+
# env files
31+
.env
32+
.env*.local
33+
34+
# vercel
35+
.vercel
36+
37+
# typescript
38+
*.tsbuildinfo
39+
next-env.d.ts
40+
41+
# database
42+
db/
43+
*.db
44+
*.db-journal
45+
46+
# prisma
47+
prisma/
48+
49+
# server files (not needed for static site)
50+
src/lib/db.ts
51+
Caddyfile
52+
upload/
53+
examples/
54+
55+
# dev tools
56+
worklog.md
57+
58+
# IDE
59+
.vscode/
60+
.idea/
61+
*.swp
62+
*.swo
63+
*~
64+
65+
# download folder (generated static site copies — not source code)
66+
download/

CNAME

100644100755
File mode changed.

README.md

100644100755
File mode changed.

bun.lock

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

components.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "",
8+
"css": "src/app/globals.css",
9+
"baseColor": "neutral",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/lib/utils",
16+
"ui": "@/components/ui",
17+
"lib": "@/lib",
18+
"hooks": "@/hooks"
19+
},
20+
"iconLibrary": "lucide"
21+
}

eslint.config.mjs

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
import nextCoreWebVitals from "eslint-config-next/core-web-vitals";
2+
import nextTypescript from "eslint-config-next/typescript";
3+
import { dirname } from "path";
4+
import { fileURLToPath } from "url";
5+
6+
const __filename = fileURLToPath(import.meta.url);
7+
const __dirname = dirname(__filename);
8+
9+
const eslintConfig = [...nextCoreWebVitals, ...nextTypescript, {
10+
rules: {
11+
// TypeScript rules
12+
"@typescript-eslint/no-explicit-any": "off",
13+
"@typescript-eslint/no-unused-vars": "off",
14+
"@typescript-eslint/no-non-null-assertion": "off",
15+
"@typescript-eslint/ban-ts-comment": "off",
16+
"@typescript-eslint/prefer-as-const": "off",
17+
"@typescript-eslint/no-unused-disable-directive": "off",
18+
19+
// React rules
20+
"react-hooks/exhaustive-deps": "off",
21+
"react-hooks/purity": "off",
22+
"react/no-unescaped-entities": "off",
23+
"react/display-name": "off",
24+
"react/prop-types": "off",
25+
"react-compiler/react-compiler": "off",
26+
27+
// Next.js rules
28+
"@next/next/no-img-element": "off",
29+
"@next/next/no-html-link-for-pages": "off",
30+
31+
// General JavaScript rules
32+
"prefer-const": "off",
33+
"no-unused-vars": "off",
34+
"no-console": "off",
35+
"no-debugger": "off",
36+
"no-empty": "off",
37+
"no-irregular-whitespace": "off",
38+
"no-case-declarations": "off",
39+
"no-fallthrough": "off",
40+
"no-mixed-spaces-and-tabs": "off",
41+
"no-redeclare": "off",
42+
"no-undef": "off",
43+
"no-unreachable": "off",
44+
"no-useless-escape": "off",
45+
},
46+
}, {
47+
ignores: ["node_modules/**", ".next/**", "out/**", "build/**", "next-env.d.ts", "examples/**", "skills"]
48+
}];
49+
50+
export default eslintConfig;

0 commit comments

Comments
 (0)