Access the client folder and install the dependencies:
cd client
npm install
Start the frontend client:
npm start
Download the MySql container:
docker pull mysql
Create the container with password and database:
docker run --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 -e MYSQL_DATABASE=awschallenge -d mysql
Start, get logs and access the container (when needed):
docker start mysql # start
docker exec -it mysql bash # access
docker logs mysql # logs
Access the server folder and install the dependencies:
cd server
npm install
Start the backend client:
npm start