Misc. Terminal Commands
#start Docker
docker-compose up --build
#start npm
npm run serve
#Enter Mysql from MAMP machine
/Applications/MAMP/Library/bin/mysql --host=localhost -uroot -proot
#show mysql databases
show databases;
#export DB directly from Mysql (MAMP)
/Applications/MAMP/Library/bin/mysqldump -u root -p --opt blogwalk > exported_file.sql
#export DB directly from Mysql WITHOUT structure data (MAMP)
/Applications/MAMP/Library/bin/mysqldump --no-create-info -u root -p --opt blogwalk > exported_file.sql