1

Procfile

📁🔧 Craft a Procfile in your project's root directory and add these code lines to it!

web: gunicorn 'name-of-application.wsgi'

From the code above "name-of-application" refers to the name of your Django project, the folder that holds your settings.py file.

 

Note: A Procfile has no file extension.

 

1124
Clinton
Nwachukwu