View the meal app's overall current progress here.
View the documentation created for the script files (utilising JSDocs) here.
Required binaries: | Binary | Development Using Version |
---|---|---|
node |
v19.6.0 | |
npm |
9.4.0 | |
docker |
Docker version 20.10.12, build e91ed57 | |
mysql |
mysql Ver 8.0.32 for macos12.6 on x86_64 (Homebrew) |
Steps:
mysql
container
docker run -d -p 3306:3306 \
--name mysql-container -e MYSQL_ROOT_PASSWORD=root \
-e MYSQL_DATABASE=meal_app -e MYSQL_USER=sqluser \
-e MYSQL_PASSWORD=password mysql/mysql-server:8.0.32
mysql -h 127.0.0.1 -u sqluser -p
USE meal_app;
git clone https://github.com/ASP-Projects-Team-38/Meal-App.git
cd Meal-App
npm install
npm start
http://127.0.0.1:5000