فهرست منبع

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

Co-authored-by: abelanger5 <alexander.b138@gmail.com>
jimcru21 5 سال پیش
والد
کامیت
9e9e1fcfbd
1فایلهای تغییر یافته به همراه5 افزوده شده و 1 حذف شده
  1. 5 1
      docs/deploy/applications/deploying-django-application-non-docker.md

+ 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:
 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
 8. Then pip freeze requirements
   ```sh
   ```sh