Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 746 Bytes

File metadata and controls

25 lines (16 loc) · 746 Bytes

Group Call App

The main technology used here to pull off this project were React (A front-end library) and Django REST Framework (DRF is a Python based back-end framework).

Resources

Commands

pip freeze > requirements.txt
git push heroku main
python manage.py collectstatic --noinput
heroku config:set DISABLE_COLLECTSTATIC=1


# 
release: python manage.py migrate && python manage.py collectstatic --noinput && python manage.py runserver 
release: cd frontend && npm run build