mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-26 10:35:04 +03:00
3e1d60ee8e
Signed-off-by: Mihovil Ilakovac <mihovil@ilakovac.com>
28 lines
641 B
JavaScript
28 lines
641 B
JavaScript
app waspAi {
|
|
wasp: {
|
|
version: "^0.10.6"
|
|
},
|
|
title: "wasp-ai",
|
|
dependencies: [
|
|
("uuid", "^9.0.0"),
|
|
("prismjs", "^1.29.0"),
|
|
("react-accessible-treeview", "2.6.1"),
|
|
("react-icons", "4.9.0")
|
|
],
|
|
client: {
|
|
rootComponent: import { RootComponent } from "@client/RootComponent.jsx",
|
|
}
|
|
}
|
|
|
|
route RootRoute { path: "/", to: MainPage }
|
|
page MainPage {
|
|
component: import Main from "@client/pages/MainPage.jsx"
|
|
}
|
|
|
|
action startGeneratingNewApp {
|
|
fn: import { startGeneratingNewApp } from "@server/operations.js"
|
|
}
|
|
|
|
query getAppGenerationResult {
|
|
fn: import { getAppGenerationResult } from "@server/operations.js"
|
|
} |