wasp/web/versioned_docs/version-0.13.0/auth/social-auth/_wasp-file-structure-note.md
2024-03-19 16:44:13 +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 { ... }