wasp/web/docs/auth/social-auth/_wasp-file-structure-note.md
2024-01-15 11:00:54 +01:00

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 { ... }
```