wasp/wasp-ai/main.wasp
Mihovil Ilakovac 41269b550f Updates web app
Signed-off-by: Mihovil Ilakovac <mihovil@ilakovac.com>
2023-06-28 17:56:24 +02:00

74 lines
1.5 KiB
JavaScript

app waspAi {
wasp: {
version: "^0.11.0"
},
title: "wasp-ai",
dependencies: [
("prismjs", "^1.29.0"),
("react-accessible-treeview", "2.6.1"),
("react-icons", "4.9.0"),
("@zip.js/zip.js", "2.7.16"),
("async-mutex", "0.4.0"),
],
client: {
rootComponent: import { RootComponent } from "@client/RootComponent.jsx",
},
db: {
system: PostgreSQL
}
}
route RootRoute { path: "/", to: MainPage }
page MainPage {
component: import Main from "@client/pages/MainPage.jsx"
}
route ResultRoute { path: "/result/:appId", to: ResultPage }
page ResultPage {
component: import { ResultPage } from "@client/pages/ResultPage.jsx"
}
action startGeneratingNewApp {
fn: import { startGeneratingNewApp } from "@server/operations.js",
entities: [
Project,
File,
Log,
]
}
query getAppGenerationResult {
fn: import { getAppGenerationResult } from "@server/operations.js",
entities: [
Project
]
}
entity Project {=psl
id String @id @default(uuid())
name String
description String
createdAt DateTime @default(now())
files File[]
logs Log[]
psl=}
entity File {=psl
id String @id @default(uuid())
name String
content String
createdAt DateTime @default(now())
projectId String
project Project @relation(fields: [projectId], references: [id])
@@index([name, projectId])
psl=}
entity Log {=psl
id String @id @default(uuid())
content String
createdAt DateTime @default(now())
projectId String
project Project @relation(fields: [projectId], references: [id])
psl=}