Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Postgres integration #3

Merged
merged 7 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Added integration to add and get information from Postgres database
  • Loading branch information
maikReal committed Jun 11, 2024
commit c5cf817f6f8c73b0c65812b24688c237026f8e6e
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,10 @@ You can check out [the Next.js GitHub repository](https://github.com/vercel/next
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.

# DB SQL Queries

CREATE TABLE public."warpdrive-db" (
fid numeric NOT NULL,
casts json NULL
);
250 changes: 250 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,17 @@
"dependencies": {
"@neynar/nodejs-sdk": "^1.3.0",
"@types/jsonwebtoken": "^9.0.6",
"@vercel/postgres": "^0.8.0",
"@vercel/postgres-kysely": "^0.8.0",
"canvas": "^2.11.2",
"date-fns": "^3.6.0",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"glob": "^10.3.12",
"jsonwebtoken": "^9.0.2",
"kysely": "^0.27.3",
"next": "14.0.3",
"pg": "^8.12.0",
"react": "^18",
"react-dom": "^18",
"react-toastify": "^9.1.3",
Expand Down
Loading