App for rating various sports teams.
Hosted on https://ratemycrewteam.vercel.app.
This project uses SvelteKit.
Add Google OAuth credentials to a .env file in the root of the project. Get a Google API key as well. Also add an OAuth redirect URL.
Also add a session secret, which must be a randomly generated 32-character string. This is used by svelte-kit-cookie-session.
# .env
GOOGLE_CLIENT_ID=...
GOOGLE_CLIENT_SECRET=...
OAUTH_REDIRECT='http://localhost:5173/oauth'
GAPI_KEY=...
SESSION_SECRET=...
npm install
npm run dev