Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neondatabase/neon-vercel-rawsql
Example use of Neon serverless driver on Vercel Edge Functions with raw SQL
https://github.com/neondatabase/neon-vercel-rawsql
neon postgresql serverless sql vercel vercel-edge-functions
Last synced: 9 days ago
JSON representation
Example use of Neon serverless driver on Vercel Edge Functions with raw SQL
- Host: GitHub
- URL: https://github.com/neondatabase/neon-vercel-rawsql
- Owner: neondatabase
- Created: 2023-02-09T17:28:09.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-10T10:34:16.000Z (10 months ago)
- Last Synced: 2024-05-02T05:53:47.595Z (7 months ago)
- Topics: neon, postgresql, serverless, sql, vercel, vercel-edge-functions
- Language: TypeScript
- Homepage: https://neon.tech
- Size: 869 KB
- Stars: 3
- Watchers: 10
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# neon-vercel-rawsql
This repo demonstrates using raw SQL with [Neon's serverless driver](https://www.npmjs.com/package/@neondatabase/serverless) on [Vercel](https://vercel.com/) Edge Functions.
We implement a simple app that generates a JSON listing of the user's nearest 10 UNESCO World Heritage sites via IP geolocation (data copyright © 1992 – 2022 [UNESCO/World Heritage Centre](https://whc.unesco.org/en/syndication/)).
## Deploy
* Ensure the `psql` client is installed.
* Create a Neon database and make a note of the connection string from the [Neon console](https://console.neon.tech/).
* Clone this repo, then:
```bash
# get dependencies
npm install
npm install -g vercel@latest# create DATABASE_URL environment variable, remote and local
npx vercel env add DATABASE_URL # paste in the connection string and select all environments
npx vercel env pull .env.local # now bring it down into ./.env.local for local use# create the schema and copy data to DB
(source .env.local \
&& curl -s https://gist.githubusercontent.com/jawj/a8d53ff339707c65128af83b4783f4fe/raw/45dbcc819b00ecb72f80b0cf91e01b3d055662b5/whc-sites-2021.psql \
| psql $DATABASE_URL)# test
npx vercel dev# ... and deploy
npx vercel deploy
```## Feedback and support
Please visit [Neon Community](https://community.neon.tech/) or [Support](https://neon.tech/docs/introduction/support).