https://github.com/pianopia/nextjs-drizzle-turso-next-auth-sample
NextJS上でDrizzleとTursoとNextAuthを使ってログイン認証を行うサンプル
https://github.com/pianopia/nextjs-drizzle-turso-next-auth-sample
Last synced: over 1 year ago
JSON representation
NextJS上でDrizzleとTursoとNextAuthを使ってログイン認証を行うサンプル
- Host: GitHub
- URL: https://github.com/pianopia/nextjs-drizzle-turso-next-auth-sample
- Owner: pianopia
- Created: 2025-02-17T02:20:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-17T02:58:36.000Z (over 1 year ago)
- Last Synced: 2025-02-17T03:30:47.615Z (over 1 year ago)
- Language: TypeScript
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Token create
```bash
openssl rand -base64 32
```
## Deploy
```bash
docker buildx build -t gcr.io//:latest --platform linux/amd64 .
docker push gcr.io//
gcloud run deploy --image gcr.io//:latest --platform managed --set-env-vars NODE_ENV=production --region=asia-east1
```
## No Left Space
```bash
docker system df
docker system prune -a
docker system prune --volumes
```