Guest User

Untitled

a guest
Feb 19th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. $ heroku create --buildpack heroku/python
  2. Creating app... done, glacial-reef-7599
  3. Setting buildpack to heroku/python... done
  4. https://glacial-reef-7599.herokuapp.com/ | https://git.heroku.com/glacial-reef-7599.git
  5.  
  6. $ git push heroku master
  7. Counting objects: 129, done.
  8. Delta compression using up to 8 threads.
  9. Compressing objects: 100% (124/124), done.
  10. Writing objects: 100% (129/129), 69.06 KiB | 0 bytes/s, done.
  11. Total 129 (delta 22), reused 0 (delta 0)
  12. remote: Compressing source files... done.
  13. remote: Building source:
  14. remote:
  15. remote: ! No default language could be detected for this app.
  16. remote: HINT: This occurs when Heroku cannot detect the buildpack to use for this application automatically.
  17. remote: See https://devcenter.heroku.com/articles/buildpacks
  18. remote:
  19. remote: ! Push failed
  20. remote: Verifying deploy...
  21. remote:
  22. remote: ! Push rejected to pure-badlands-9125.
  23. remote:
  24. To https://git.heroku.com/pure-badlands-9125.git
  25. ! [remote rejected] master -> master (pre-receive hook declined)
  26. error: failed to push some refs to 'https://git.heroku.com/pure-badlands-9125.git'
  27.  
  28. .git
  29. .idea
  30. projectapp
  31. projectname
  32. rango
  33. db.sqlite3
  34. manage.py
  35. populate_rango.py
  36. requirements.txt
  37.  
  38. python-3.5.2
  39.  
  40. web: gunicorn projectname.wsgi --log-file -
  41.  
  42. import os
  43. import signal
  44.  
  45. import sys
  46. import traceback
  47.  
  48. import time
  49. from django.core.wsgi import get_wsgi_application
  50. from whitenoise.django import DjangoWhiteNoise
  51.  
  52. os.environ.setdefault("DJANGO_SETTINGS_MODULE", "projectname.settings")
  53.  
  54. application = get_wsgi_application()
  55. application = DjangoWhiteNoise(application)
Add Comment
Please, Sign In to add comment