Quellcode durchsuchen

Update docs/deploy/applications/deploying-django-application-non-docker.md

Co-authored-by: abelanger5 <alexander.b138@gmail.com>
jimcru21 vor 5 Jahren
Ursprung
Commit
9e9e1fcfbd

+ 5 - 1
docs/deploy/applications/deploying-django-application-non-docker.md

@@ -41,7 +41,11 @@ To deploy your Django Application in Porter. You need to tweak something on your
   ```
 7. Add Procfile and add this:
   ```
-  web: gunicorn <project-name>.wsgi -b 0.0.0.0:8989 --timeout 120 (ex. web: gunicorn djangosample.wsgi -b 0.0.0.0:8989 --timeout 120 )
+web: gunicorn <project-name>.wsgi -b 0.0.0.0:8989 --timeout 120 
+  
+For example: 
+  
+web: gunicorn djangosample.wsgi -b 0.0.0.0:8989 --timeout 120
   ```
 8. Then pip freeze requirements
   ```sh