Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/poad/vercel-functions-example
https://github.com/poad/vercel-functions-example
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/poad/vercel-functions-example
- Owner: poad
- Created: 2024-07-13T09:37:27.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-01-14T07:27:49.000Z (6 days ago)
- Last Synced: 2025-01-14T08:35:15.870Z (6 days ago)
- Language: TypeScript
- Homepage: https://vercel-functions-example-henna.vercel.app
- Size: 1.57 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vercel-functions-example
```sql
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
create table todos (
id uuid DEFAULT uuid_generate_v4() PRIMARY KEY,
content text not null,
createdAt timestamp default current_timestamp
);
```