Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 745 Bytes

README.md

File metadata and controls

40 lines (27 loc) · 745 Bytes

Backend for my article on TheWidlarzGroup

install postgres

How to run?!

  • Step 1: Clone the project
git clone https://github.com/TheWidlarzGroup/JWTAuthBackend.git
  • Step 2: Install packages
cd JWTAuthBackend && yarn
  • Step 3: Add .env file
Add .env file with DATABASE_URL

example:
DATABASE_URL =  "postgresql://postgres:postgres@localhost:5432/prismadb"
REFRESH_TOKEN_SECRET = "refreshthesecretphrog"
ACCESS_TOKEN_SECRET = "accessthesecretphrog"
  • Step 4: Run Prisma migration:
npx prisma migrate dev --name newMigration --preview-feature
  • Step 5: Run the backend!
yarn dev