Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/app-generator/deploypro-nextjs-pgsql
DeployPRO Service - NexJS & PostgreSQL Sample
https://github.com/app-generator/deploypro-nextjs-pgsql
deploypro deploypro-nextjs deploypro-pgsql deploypro-sample
Last synced: 15 days ago
JSON representation
DeployPRO Service - NexJS & PostgreSQL Sample
- Host: GitHub
- URL: https://github.com/app-generator/deploypro-nextjs-pgsql
- Owner: app-generator
- Created: 2023-08-10T04:28:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-10T04:35:10.000Z (over 1 year ago)
- Last Synced: 2024-12-15T21:18:15.912Z (20 days ago)
- Topics: deploypro, deploypro-nextjs, deploypro-pgsql, deploypro-sample
- Language: TypeScript
- Homepage: https://deploypro.dev
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple TODO List
Simple todo list base on [Vercel Fullstack Guides](https://vercel.com/guides/nextjs-prisma-postgres).
## Getting Started
First, create the tables in your database, you now can use the following command of the Prisma CLI::
```bash
npx prisma db push
```Then, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## Environment
```env
POSTGRES_PRISMA_URL="postgresql://USER:PASSWORD@HOST:PORT/DATABASE?schema=sample"
```