You should have XCode installed
First, install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"Then run brew update to make sure Homebrew is up to date.
brew updateAs a safe measure you should run brew doctor to make sure your system is ready to brew. Run the command below and follow any recommendations from brew doctor.
brew doctorNext, add Homebrew’s location to your $PATH in your .bash_profile or .zshrc file.
export PATH="/usr/local/bin:$PATH"Next, install Node (npm will be installed with Node):
brew install node// BACKEND
"> Open ./todos-backend/Package.swift in Xcode
"> Wait for the dependencies to be fetched
"> Run scheme
// FRONTEND
"> Open ./todos-frontend in terminal
"> Run `npm install` and `npm run serve`
// BROWSER
"> Backend address http://localhost:8080
"> Frontend address http://localhost:8081
"> Go to http://localhost:8081Register
Login
Main
Add todo with no title ❌
Add todo with no content ✅




