mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-25 23:37:46 +03:00
16 lines
298 B
Markdown
16 lines
298 B
Markdown
Here's a skeleton of how our `main.wasp` should look like after we're done:
|
|
|
|
```wasp title="main.wasp"
|
|
// Configuring the social authentication
|
|
app myApp {
|
|
auth: { ... }
|
|
}
|
|
|
|
// Defining entities
|
|
entity User { ... }
|
|
|
|
// Defining routes and pages
|
|
route LoginRoute { ... }
|
|
page LoginPage { ... }
|
|
```
|