1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00

Use prisma init

This commit is contained in:
Steffo 2022-05-20 14:20:45 +02:00
parent a3fe733f1b
commit 68429a1433
Signed by: steffo
GPG key ID: 6965406171929D01
4 changed files with 29 additions and 4 deletions

7
.env Normal file
View file

@ -0,0 +1,7 @@
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB (Preview).
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
DATABASE_URL="mysql://25socxdw3fbr:pscale_pw_SbgQFHnjcTtgijldeQwKoDdf7LICzm9qAzs2AGJ4W-8@gwzak9auhlla.eu-central-2.psdb.cloud/festa?sslaccept=strict"

View file

@ -10,6 +10,7 @@
},
"dependencies": {
"next": "12.1.6",
"prisma": "^3.14.0",
"react": "18.1.0",
"react-dom": "18.1.0"
},

View file

@ -1,6 +1,11 @@
// TODO: Remove this, as it is a secret!
datasource db {
provider = "mysql"
url = "mysql://vvtzpi3s4m76:pscale_pw_s9q4qK3T7YeBOoe8osmdeuD34XuOk1ZOKmkH321qw1g@gwzak9auhlla.eu-central-2.psdb.cloud/festa?sslaccept=strict"
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}

View file

@ -139,6 +139,11 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
"@prisma/engines@3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d4a6a":
version "3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d4a6a"
resolved "https://registry.npmjs.org/@prisma/engines/-/engines-3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d4a6a.tgz#7fa11bc26a51d450185c816cc0ab8cac673fb4bf"
integrity sha512-LwZvI3FY6f43xFjQNRuE10JM5R8vJzFTSmbV9X0Wuhv9kscLkjRlZt0BEoiHmO+2HA3B3xxbMfB5du7ZoSFXGg==
"@rushstack/eslint-patch@^1.1.3":
version "1.1.3"
resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.1.3.tgz#6801033be7ff87a6b7cadaf5b337c9f366a3c4b0"
@ -1382,6 +1387,13 @@ prelude-ls@^1.2.1:
resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
prisma@^3.14.0:
version "3.14.0"
resolved "https://registry.npmjs.org/prisma/-/prisma-3.14.0.tgz#dd67ece37d7b5373e9fd9588971de0024b49be81"
integrity sha512-l9MOgNCn/paDE+i1K2fp9NZ+Du4trzPTJsGkaQHVBufTGqzoYHuNk8JfzXuIn0Gte6/ZjyKj652Jq/Lc1tp2yw==
dependencies:
"@prisma/engines" "3.14.0-36.2b0c12756921c891fec4f68d9444e18c7d5d4a6a"
prop-types@^15.8.1:
version "15.8.1"
resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"