mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-23 19:29:17 +03:00
41269b550f
Signed-off-by: Mihovil Ilakovac <mihovil@ilakovac.com>
74 lines
1.5 KiB
JavaScript
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=}
|