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

298 B

Here's a skeleton of how our main.wasp should look like after we're done:

// Configuring the social authentication
app myApp {
  auth: { ... }
}

// Defining entities
entity User { ... }

// Defining routes and pages
route LoginRoute { ... }
page LoginPage { ... }