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
16 changes: 8 additions & 8 deletions .github/workflows/production-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
# run: bun run lint --filter=@deepnote-clone/web
# - name: 🪐 Check TypeScript
# run: bun run typecheck --filter=@deepnote-clone/web
- name: 📤 Pull Vercel Environment Information
run: bunx vercel env pull .env --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: 📤 Pull Vercel Environment Information
run: bunx vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- 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 }}
# - name: 📤 Pull Vercel Environment Information
# run: bunx vercel env pull .env --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
# - name: 📤 Pull Vercel Environment Information
# run: bunx vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
# - 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 }}
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,21 @@ export function AppSidebar() {
placeholder="Search integration to connect"
className="w-full p-2 mb-2 border border-gray-300 rounded"
/>
<DropdownMenuItem asChild key="demo-snowflake" className="flex items-center gap-2 p-1 mt-2">
<DropdownMenuItem
asChild
key="demo-snowflake"
className="flex items-center gap-2 p-1 mt-2"
>
<a href="#" className="flex items-center gap-2">
<SnowflakeIcon />
<span>[Demo] Snowflake</span>
</a>
</DropdownMenuItem>
<DropdownMenuItem asChild key="create-integration" className="flex items-center gap-2 p-1 mt-2">
<DropdownMenuItem
asChild
key="create-integration"
className="flex items-center gap-2 p-1 mt-2"
>
<a href="#" className="flex items-center gap-2">
<Plus className="h-4 w-4" />
<span>Create a new integration</span>
Expand Down Expand Up @@ -201,7 +209,7 @@ export function AppSidebar() {
</Button>
</div>
<SidebarGroupContent>
<Card className="mx-2 flex flex-col items-center gap-4 p-4 text-center text-sm text-muted-foreground">
<div className="flex flex-col items-center justify-center gap-4 py-8 text-center">
<FileText className="h-8 w-8" />
<div className="space-y-2">
<h3 className="font-semibold text-foreground">Import files</h3>
Expand All @@ -210,23 +218,25 @@ export function AppSidebar() {
notebooks in this project.
</p>
</div>
</Card>
</div>
</SidebarGroupContent>
</SidebarGroup>

<SidebarGroup>
<SidebarGroupLabel className="text-xs">Terminals</SidebarGroupLabel>
<SidebarGroupContent>
<SidebarMenu>
<SidebarMenuItem>
<SidebarMenuButton asChild>
<a href="#">
<Terminal className="h-4 w-4" />
<span>{"Bhaskaran Rathnachalam's terminal"}</span>
</a>
</SidebarMenuButton>
</SidebarMenuItem>
</SidebarMenu>
<div className="flex flex-col items-center justify-center gap-4 py-8 text-center">
<div className="rounded-lg border border-gray-800 p-4">
<Terminal className="mx-auto h-4 w-4 text-gray-500" />
</div>
<div>
<h3 className="font-semibold text-foreground">No terminals</h3>
<p>
Create a terminal to connect to the underlying project's
machine
</p>
</div>
</div>
</SidebarGroupContent>
</SidebarGroup>
</SidebarContent>
Expand All @@ -236,10 +246,10 @@ export function AppSidebar() {
<SidebarGroupContent>
<div className="space-y-2 px-2">
<div className="space-y-4">
<Button variant="outline" className="w-full justify-start">
<Button variant="outline" className="w-full justify-center">
<div>
<div className="text-xs font-semibold">Basic</div>
<div className="text-xs text-muted-foreground">
<div className="text-xs text-center text-muted-foreground ml-auto">
2 vCPUs, 5 GB memory
</div>
</div>
Expand Down
28 changes: 0 additions & 28 deletions packages/editor/src/lib/data/initialContent.tsx

This file was deleted.

Loading
Loading