Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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"
```