Skip to content

Commit 20eb6eb

Browse files
authored
Merge pull request #9 from devakone/develop
Release: develop → main
2 parents 2157f47 + 1942466 commit 20eb6eb

127 files changed

Lines changed: 7001 additions & 755 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ supabase/.temp/
3434
*.swp
3535
*.swo
3636
*~
37+
.cursor-memory
3738

3839
# OS
3940
.DS_Store
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
".": "0.1.0-alpha.2",
3-
"apps/web": "0.1.0-alpha.2",
4-
"apps/worker": "0.1.0-alpha.1"
2+
".": "0.1.0-alpha.3",
3+
"apps/web": "0.1.0-alpha.3",
4+
"apps/worker": "0.1.0-alpha.2"
55
}

CHANGELOG-DEVELOP.md

Lines changed: 23 additions & 0 deletions

apps/web/CHANGELOG-DEVELOP.md

Lines changed: 20 additions & 0 deletions

apps/web/next.config.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ const nextConfig: NextConfig = {
55
turbopack: {
66
root: path.join(__dirname, "../.."),
77
},
8+
images: {
9+
remotePatterns: [
10+
{
11+
protocol: "https",
12+
hostname: "avatars.githubusercontent.com",
13+
},
14+
],
15+
},
16+
async redirects() {
17+
return [
18+
{
19+
source: "/reports",
20+
destination: "/vibes",
21+
permanent: true,
22+
},
23+
{
24+
source: "/reports/:jobId",
25+
destination: "/analysis/:jobId",
26+
permanent: true,
27+
},
28+
{
29+
source: "/repos",
30+
destination: "/settings/repos",
31+
permanent: true,
32+
},
33+
];
34+
},
835
};
936

1037
export default nextConfig;

apps/web/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@
1212
"dependencies": {
1313
"@radix-ui/react-popover": "^1.1.15",
1414
"@radix-ui/react-toast": "^1.2.15",
15+
"@radix-ui/react-tooltip": "^1.2.8",
1516
"@supabase/ssr": "^0.5.2",
1617
"@supabase/supabase-js": "^2.47.14",
18+
"@vercel/og": "^0.8.6",
1719
"@vibed/core": "*",
1820
"@vibed/db": "*",
1921
"class-variance-authority": "^0.7.1",
@@ -22,13 +24,15 @@
2224
"inngest": "^3.49.3",
2325
"lucide-react": "^0.562.0",
2426
"next": "16.1.2",
27+
"qrcode": "^1.5.4",
2528
"react": "19.2.3",
2629
"react-dom": "19.2.3",
2730
"tailwind-merge": "^3.4.0"
2831
},
2932
"devDependencies": {
3033
"@tailwindcss/postcss": "^4",
3134
"@types/node": "^20",
35+
"@types/qrcode": "^1.5.6",
3236
"@types/react": "^19",
3337
"@types/react-dom": "^19",
3438
"eslint": "^9",
150 KB
119 KB
185 KB
187 KB

0 commit comments

Comments
 (0)