wasp/examples/waspleau/main.wasp

28 lines
494 B
JavaScript
Raw Normal View History

2021-12-22 18:06:39 +03:00
app waspleau {
title: "Waspleau",
2021-12-22 18:06:39 +03:00
server: {
setupFn: import serverSetup from "@ext/serverSetup.js"
},
2021-12-22 18:06:39 +03:00
db: { system: PostgreSQL },
dependencies: [
("bull", "4.1.1"),
("axios", "^0.21.1")
]
2021-12-22 18:06:39 +03:00
}
route RootsRoute { path: "/", to: MainPage }
page MainPage {
2021-12-22 18:06:39 +03:00
component: import Main from "@ext/MainPage.js"
}
query dashboard {
fn: import { refreshDashboardData } from "@ext/dashboard.js"
}
entity Dummy {=psl
id Int @id @default(autoincrement())
psl=}