Skip to content

Commit 909d94e

Browse files
committed
added basic frontend
1 parent d284a3a commit 909d94e

20 files changed

+8047
-0
lines changed

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
1+
# Go specific
12
.env*
23
bin/
34
data/*.db
45
coverage.out
56
coverage.html
7+
8+
# Frontend specific (Node.js/Next.js)
9+
frontend/node_modules/
10+
frontend/.next/
11+
frontend/out/
12+
frontend/build/
13+
frontend/dist/
14+
frontend/.env*.local
15+
frontend/.vercel/
16+
frontend/*.tsbuildinfo
17+
frontend/next-env.d.ts
18+
19+
# General
20+
.DS_Store
21+
*.pem
22+
*.log
23+

frontend/.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["next/core-web-vitals"]
3+
}

0 commit comments

Comments
 (0)