/seconds

Primary LanguageJavaScriptApache License 2.0Apache-2.0

Seconds

Setup the Database

Needs a mysql DB For now using a docker mysql manually

docker pull mysql/mysql-server:latest
docker run --name=mysql1 -p 3306:3306 -e MYSQL_ROOT_PASSWORD=root_password -d mysql/mysql-server:latest
docker exec -i mysql1 mysql -uroot -proot_password < api/db-setup.sql

Run the Server

cd api
npm run start:server

Run the UI

cd ui
npm run start

Testing