Skip to content

Latest commit

 

History

History
55 lines (30 loc) · 1.49 KB

README.md

File metadata and controls

55 lines (30 loc) · 1.49 KB

No Border Jobs

A plataform to find jobs global and remote jobs

Running in production here

License

MIT

Environment Variables

To run this project, you will need to add the following environment variables to your .env file (all in .env.example)

Note: It cannot be .env.local, the file should be .env (or prisma will not read it properly)

  • NEXTAUTH_URL: The URL of your project (in product that will need to change to current project address)

  • NEXTAUTH_SECRET= A random string used in Next Auth encryptation (I think so)

  • Google variabes: The providers used in next-auth (feel free to add another provides).. .the explanation to get those values is on next-auth documentation

  • Postgrees Variables: Check here how to get this values... but here are a printscreen with the righ place

Screenshot 2023-10-21 at 10 24 23 PM

Run Locally

  • Clone the project

  • Install dependencies

  npm install
  • Push database and generate Prisma Client
  npx prisma db push
  • Start the project
  npm run dev

Tech Stack

Client: NextJS (13), TypeScript, React, TailwindCSS

Server: Postgrees, Prisma