to deploy to a new app, some changes will need to be made.
then dump the data from the current db (my personal heroku acc) to the db connected to the actual app.
we can use my personal db and app for all testing/development after we do this, which will essentially fix issue #19.
add to procfile:
heroku run python manage.py makemigrations
heroku run python manage.py migrate
to deploy to a new app, some changes will need to be made. then dump the data from the current db (my personal heroku acc) to the db connected to the actual app. we can use my personal db and app for all testing/development after we do this, which will essentially fix issue #19. add to procfile: heroku run python manage.py makemigrations heroku run python manage.py migrate