A minimal SST v3 application with SvelteKit, DynamoDB, and OpenAuth for authentication.
git clone https://github.com/Pathway-Analytics/sst-auth-svelte.git
cd sst-auth-svelte
Assuming you are using AWS, add the Route 53 Zone ID, and domain you want to apply.
Add certificates for your domain in both us-east-1 and the region you want to set in sst.config.ts as the default region for your app, insert the certificate arns from each in the .env file below, sst will use us-east-1 if not specified.
Any request made to a server using CDN will need to use a certificate hosted in us-east-1 (ie the frontend web server and the Auth server), any other servers will need to use a certificate hosted in the default region set in sst.config.ts (ie an API server).
ZONE = "[your aws Route 53 Zone ID]"
DOMAIN = "[yourdomain.com]"
DEFAULT_REGION = "[default region]"
DEFAULT_REGION_CERT = "arn:aws:acm:[default region]:[your aws account]:certificate/[certificate id]"
CDN_CERT = "arn:aws:acm:us-east-1:[your aws account]:certificate/[certificate id]"
APP_TITLE = `app title`
APP_FAVICON = https://example.com/icons/favicon.ico
Edit the etc/hosts file to include the following line to forward requests to local.yourdomain.com to localhost/127.0.0.1:
127.0.0.1 local.yourdomain.com
Follow the cert instructions
Update function getUser in /packages/functions/src/auth/auth.ts to connect to your user db