I am trying to deploy my app to heroku and I keep getting this error even though when I run locally it works perfectly fine. I have added django-pwa==1.0.10 to my requirments.txt file also so that heroku installs the package. Here are my installed apps in settings.py:
JavaScript
x
18
18
1
INSTALLED_APPS = [
2
'django.contrib.admin',
3
'django.contrib.auth',
4
'django.contrib.contenttypes',
5
'django.contrib.sessions',
6
'django.contrib.messages',
7
'django.contrib.staticfiles',
8
'pwa',
9
# 'embed_video',
10
'whitenoise.runserver_nostatic',
11
'courses.apps.CoursesConfig',
12
'accounts.apps.AccountsConfig',
13
'announcements.apps.AnnouncementsConfig',
14
'students.apps.StudentsConfig',
15
'home.apps.HomeConfig',
16
'event_calendar.apps.EventCalendarConfig',
17
]
18
Not really sure what to do as I am not very experienced with heroku.
Advertisement
Answer
By default Heroku will try to install every app from your requirements.txt, so before going any further make sure of the following:
- You have run
pip freeze > requirements.txt
to reflect the change - Your path for the Procfile is correct
If it does not work after the troubleshooting, add your log from heroku to your first question, your procfile and requirements.txt.