Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 755 Bytes

README.md

File metadata and controls

47 lines (36 loc) · 755 Bytes

Getting started

Setup Client

Access the client folder and install the dependencies:

cd client
npm install

Start the frontend client:

npm start

Setup Database (Docker MySql)

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

Setup Server

Access the server folder and install the dependencies:

cd server
npm install

Start the backend client:

npm start