0

I want to deploy my django app on heroku , which I have built on Windows machine.

Can I deploy the same application using heroku toolbelt for windows.

Or I have to setup all the things on a unix machine.

And one more thing the application uses Python 3 and Django 1.8

Will that be any problem.

Mahtab Alam
  • 607
  • 2
  • 9
  • 22

1 Answers1

0

There aren't any special process listed in the docs for windows usersYou should actually deploy from a unix environment, you have to create your Procfile, requirements.txt and make some changes to your settings.py file, it's easy and straight forward.

A step by step guide can be found here https://devcenter.heroku.com/articles/getting-started-with-django

Some problems you may encouter:
Internal Server Error heroku/django
Django migrations fail in heroku

Also make sure you add your migrations and cache folders to your .gitignore file.

Community
  • 1
  • 1
HassenPy
  • 2,083
  • 1
  • 16
  • 31