feat: different run commands based on file types

This commit is contained in:
Akhilesh Rangani
2024-08-19 20:39:04 -04:00
parent 5132850cb0
commit 7559e9804f
3 changed files with 14 additions and 6 deletions

View File

@ -12,7 +12,7 @@ export type User = {
export type Sandbox = {
id: string;
name: string;
type: "react" | "node";
type: string;
visibility: "public" | "private";
createdAt: Date;
userId: string;