Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 755 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 755 Bytes

Authentication with JSON Web Tokens (JWTs)

This repo contains a working app that includes CRUD operations for fruit. For full use of this site a user has to sign in using OAuth which is a 3rd party provider of authentification. This was a project designed to show how to implement the basics of authentification and authorisation. I look forward to improving my skills in this area.

Setup

  • Clone or fork this repo and cd into the new directory

  • Install packages, run migrations and seeds, and start the dev server with npm run dev

    Tip

    Commands might look like this:

    npm install
    npm run knex migrate:latest
    npm run knex seed:run
    npm run dev