By taking a short 10 question questionaire, users can see who they have the most in common with!
Friend Finder is a simple application that use a relational databse MySQL to run analysis on the answers that each user submits.
It provides good practice for those who want to practice creating a full stack application using MySQL.
jQuery, Node.js, Express, MySQL
- Clone repo into project folder
- Run
npm i
to install all node packages - Create database by going into db folder and with mysql shell, run:
SOURCE schema.sql;
SOURCE seeds.sql;
- Now that the database has been created, run server with
nodemon server.js
- In browser, go to
localhost:3000/
and begin using app.