It is basically a simple Node Express Web Application using MySQL as its Database.
npm i
You must have to connect this application to your MySQL Database using environment variables
You have to create two tables. I have added the commands below so that yoy can create those tables yourself
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(100) NOT NULL,
password VARCHAR(100) NOT NULL
);
CREATE TABLE phones (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(250) NOT NULL,
phone VARCHAR(100) NOT NULL,
user_id INT NOT NULL,
FOREIGN KEY(user_id) REFERENCES users(id)
);
npm run dev
||||||||||| ||| ||| ||| ||| ||| ||| || ||||||||
||| ||| ||| ||||| ||||| ||| ||| || |||
||| ||||||||||| ||| ||| ||| ||||| ||||| |||
||| ||| ||| ||| ||| ||| |||| ||| || |||
||| ||| ||| ||| ||| ||| ||| ||| || ||||||||