This angular 5 web app parses recipes from the "Tispy Bartender" and allows users to input ingredients they have at home to see which of his drinks they can make.
mkdir tipsyapp
cd tipsyapp
git clone https://github.com/nelsondude/tipsyapp_backend.git
git clone https://github.com/nelsondude/tipsyapp_client.git
cd tipsyapp_client && npm install
ng build --prod --output-path ../tipsyapp_backend/tipsyapp/static/ang/ --output-hashing none
cd ../tipsyapp_backend
python3 install pipenv
pipenv shell
pip install -r requirements.txt
python manage.py runserver
ng build --prod --output-path ../tipsyapp_backend/tipsyapp/static/ang/ --output-hashing none
cd ../tipsyapp_backend
git add . && git commit -m "Message here"
git push origin master
- master push triggers heroku build