To get started, you need NodeJs, npm and Docker installed.
Download the project from github and open the directory from terminal and navigate to the backend folder
git clone https://github.com/MelisseCabral/TrelloClone.git
cd TrelloClone/backend
Build the Docker container to run the backend server application
sudo docker build -t trelloClone .
Start the container in the local enviroment
sudo docker run -p 3333:3333 -d trelloClone
See the list if the container is running
docker ps
Navigate to the frontend folder from terminal and download the dependencies :
cd ..
cd frontend
npm install
And start the application:
npm start
The application will be running in http://localhost:3000