fac21 / Final-project-NSMM

Final Project at Founders & Coders Spring Bootcamp 2021
https://final-project-nsmm-bay.vercel.app/
0 stars 0 forks source link

This is a Next.js project bootstrapped with create-next-app.

💾 How to install the project

  1. git clone
  2. cd into the directory on your computer
  3. run npm i to install node modules
  4. To run the development server run:
npm run dev
# or
yarn dev
  1. Open http://localhost:3000 with your browser to see the result.
  2. You can do npm run test to run tests in cypress
  3. To access postgres database.
    • Copy the .env.example file in the root directory to .env(which will be ignored by Git):

cp .env.example .env

DATABASE_URL='postgres://exampleuser:123@localhost:5432/example'

AUTH0_CLIENT_ID =
AUTH0_CLIENT_SECRET =
AUTH0_DOMAIN =

AUTH0_BASE_URL = http://localhost:3000/
NEXTAUTH_URL = http://localhost:3000/

DATABASE_USER =
DATABASE_PASSWORD =
DATABASE_NAME =

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.