1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-19 10:15:30 -04:00

use standard email/SMTP for contact form instead of airtable API

This commit is contained in:
2024-02-27 17:34:48 -05:00
parent 2de3914449
commit 4bef13f4ab
11 changed files with 102 additions and 110 deletions

View File

@@ -1,7 +0,0 @@
-- CreateTable
CREATE TABLE "hits" (
"slug" VARCHAR(128) NOT NULL,
"hits" INTEGER NOT NULL DEFAULT 1,
CONSTRAINT "hits_pkey" PRIMARY KEY ("slug")
);

View File

@@ -1,3 +0,0 @@
# Please do not edit this file manually
# It should be added in your version-control system (i.e. Git)
provider = "postgresql"

View File

@@ -1,12 +1,11 @@
generator client {
provider = "prisma-client-js"
previewFeatures = ["driverAdapters"]
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("POSTGRES_URL")
directUrl = env("POSTGRES_URL_NON_POOLING")
provider = "mysql"
url = env("DATABASE_URL")
relationMode = "prisma"
}
model hits {