Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 1 addition & 2 deletions .github/workflows/production-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,4 @@ jobs:
- name: 🏗 Build Project Artifacts
run: bunx vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: |
bunx vercel deploy --prebuilt --prod --archive=tgz --token=${{ secrets.VERCEL_TOKEN }} > domain.txt
run: bunx vercel deploy --prebuilt --archive=tgz --token=${{ secrets.VERCEL_TOKEN }}
41 changes: 20 additions & 21 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Website App (Next.js)",
"cwd": "${workspaceFolder}/apps/web",
"runtimeExecutable": "bun",
"runtimeArgs": ["run", "dev"],
"env": {
"NODE_OPTIONS": "--inspect"
},
"console": "integratedTerminal",
"serverReadyAction": {
"pattern": "started server on .+, url: (https?://.+)",
"uriFormat": "%s",
"action": "debugWithChrome"
}
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Website App (Next.js)",
"cwd": "${workspaceFolder}/apps/web",
"runtimeExecutable": "bun",
"runtimeArgs": ["run", "dev"],
"env": {
"NODE_OPTIONS": "--inspect"
},
"console": "integratedTerminal",
"serverReadyAction": {
"pattern": "started server on .+, url: (https?://.+)",
"uriFormat": "%s",
"action": "debugWithChrome"
}
]
}
}
]
}
1 change: 1 addition & 0 deletions apps/web/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.vercel
.env*.local
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
Database,
Calendar,
} from "lucide-react";
import { NavMain } from "./nav-main"
import { NavMain } from "@/components/nav-main"
import type React from "react";
import { MoreHorizontal, type LucideIcon } from "lucide-react"
import { Plus } from "lucide-react"
Expand All @@ -21,12 +21,10 @@ import {
SidebarContent,
SidebarFooter,
SidebarGroup,
SidebarGroupLabel,
SidebarHeader,
SidebarMenu,
SidebarMenuButton,
SidebarMenuItem,
SidebarMenuSkeleton,
SidebarRail,
} from "@deepnote-clone/ui/sidebar";
import { TeamSwitcher } from "@/components/team-switcher";
Expand Down

This file was deleted.

Loading
Loading