Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 551 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 551 Bytes

Express API Face Recognition App

This is the backend that is used for the Face Recognition App Repository in my github.

Steps

1. Create Tables Using Favorite Relational Database.

There will be two tables you will need to create:

Users
- id (int identity/sequential)
- name (varchar)
- email (varchar)
- entries (int)
- joined (date)
Login
- id (int identity/sequential)
- hash (varchar)
- email (varchar)
2. Run NPM Start in this repository.
3. Run NPM Start in the Face Recognition App Repository.