Before Running the application;
Run following commands in your sql server ,then you can insert datas.
CREATE TABLE Employees (
ID UNIQUEIDENTIFIER DEFAULT NEWID() PRIMARY KEY,
RegionId int,
Name varchar(200),
Surname varchar(200),
FOREIGN KEY (RegionId) REFERENCES Regions(Id)
);
CREATE TABLE Regions (
Id int NOT NULL PRIMARY KEY,
Name varchar(200),
ParentRegionId int,
);
After creating table, use employees.txt and regions.txt to insert datas.
Default launching url : http://localhost:9000
To Run web applicaion; (correct web application "Clvbit.CodingTask.Web2" )
npm install
npm run start