rsnext/examples/with-postgres
Max Proske 809303be59
Remove swcMinify option from example configs (#43012)
SWC minification is now [enabled by
default](https://nextjs.org/docs/advanced-features/compiler) in the
Next.js compiler.

## Documentation / Examples

- [X] Make sure the linting passes by running `pnpm build && pnpm lint`
- [X] The "examples guidelines" are followed from [our contributing
doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
2022-11-16 13:39:26 -08:00
..
lib docs(examples): add postgres.js example (#42962) 2022-11-16 09:17:43 +01:00
migrations docs(examples): add postgres.js example (#42962) 2022-11-16 09:17:43 +01:00
pages docs(examples): add postgres.js example (#42962) 2022-11-16 09:17:43 +01:00
public docs(examples): add postgres.js example (#42962) 2022-11-16 09:17:43 +01:00
styles docs(examples): add postgres.js example (#42962) 2022-11-16 09:17:43 +01:00
.env.local.example docs(examples): add postgres.js example (#42962) 2022-11-16 09:17:43 +01:00
.gitignore docs(examples): add postgres.js example (#42962) 2022-11-16 09:17:43 +01:00
ley.config.js docs(examples): add postgres.js example (#42962) 2022-11-16 09:17:43 +01:00
next.config.js Remove swcMinify option from example configs (#43012) 2022-11-16 13:39:26 -08:00
package.json docs(examples): add postgres.js example (#42962) 2022-11-16 09:17:43 +01:00
README.md docs(examples): add postgres.js example (#42962) 2022-11-16 09:17:43 +01:00
tsconfig.json docs(examples): add postgres.js example (#42962) 2022-11-16 09:17:43 +01:00

Postgres.js Example

An example using Postgres.js in a Next.js project.

Deploy your own

Once you have access to the environment variables you'll need, deploy the example using Vercel:

Deploy with Vercel

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example with-postgres with-postgres-app
yarn create next-app --example with-postgres with-postgres-app
pnpm create next-app --example with-postgres with-postgres-app

Configuration

Set up a Postgres database

Set up a Postgres database locally or use your favorite provider.

Configure environment variables

Copy the .env.local.example file in this directory to .env.local (this will be ignored by Git):

cp .env.local.example .env.local

Set the DATABASE_URL variable in .env.local to the connection uri of your postgres database.

Apply migrations

To setup up the migrations, use:

npm run migrate:up
# or
yarn migrate:up

Start Next.js in development mode

npm run dev
# or
yarn dev

Your app should now be up and running on http://localhost:3000! If it doesn't work, post on GitHub discussions.

Deploy on Vercel

Deploy it to the cloud with Vercel (Documentation).