Skip to content

Commit

Permalink
feat(playground): migrate to neon tech
Browse files Browse the repository at this point in the history
  • Loading branch information
cschroeter committed Apr 2, 2024
1 parent 4833480 commit f89db71
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 39 deletions.
16 changes: 0 additions & 16 deletions playground/README.md

This file was deleted.

18 changes: 0 additions & 18 deletions playground/docker-compose.yml

This file was deleted.

7 changes: 3 additions & 4 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@
"start": "next start",
"lint": "next lint",
"dev": "next dev",
"db:start": "docker-compose up -d",
"db:stop": "docker-compose down",
"db:push": "prisma db push --skip-generate",
"db:format": "prisma format",
"db:generate": "prisma generate",
"db:reset": "prisma migrate reset",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:reset": "prisma db push --force-reset",
"viz": "ANALYZE=true next build",
"typecheck": "tsc --noEmit"
},
Expand Down
2 changes: 1 addition & 1 deletion playground/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ generator client {
}

datasource db {
provider = "mysql"
provider = "postgresql"
url = env("DATABASE_URL")
}

Expand Down

0 comments on commit f89db71

Please sign in to comment.