Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 731 Bytes

README.md

File metadata and controls

32 lines (27 loc) · 731 Bytes

This is a Next.js project that I created to learn about new features like server and action components. I learned about it through a video by Sam Selikoff.

Getting started

If you want to try this, follow the next steps:

Install the dependencies:

pnpm install
# or
yarn install
# or
npm install

"Create a .env file with the content of .env.example (you can simply copy it or change the file path if you want to locate it in another location)

cp .env.example .env

Push the prisma schema to the database

npx prisma db push

Start the project and try it!

npm run dev
# or
yarn dev
# or
pnpm dev