Git upstream only specific directory from a repo in Heroku -


i have repo looks this

main | |--androidapp |--serverapp 

now wish deploy serverapp in heroku. ideas if possible , how ?

currently tried

heroku git:remote -a afternoon-mesa-61125 

but produced

remote: compressing source files... done. remote: building source: remote:  remote:  remote:  !     push rejected, no cedar-supported app detected remote: hint: occurs when heroku cannot detect buildpack remote:       use application automatically. remote: see https://devcenter.heroku.com/articles/buildpacks remote:  remote: verifying deploy.... remote:  remote: !   push rejected afternoon-mesa-61125. remote:  https://git.heroku.com/afternoon-mesa-61125.git  ! [remote rejected] master -> master (pre-receive hook declined) error: failed push refs 'https://git.heroku.com/afternoon-mesa-61125.git' 

help please

thank you

in order find out problem ran

gunicorn server.wsgi:application 

command outputted more descriptive error.

i hope helps

p.s. error

from whitenoise.django import djangowhitenoise os.environ.setdefault("django_settings_module", "server.settings") 

in stead of:

os.environ.setdefault("django_settings_module", "server.settings") whitenoise.django import djangowhitenoise 

Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -