RES: RES: Re: Deploy on heroku with Geodjango/ postgis

2020-05-27 Thread Samuel Nogueira
Sure! Here it is: https://github.com/SamuelNoB/Primeiro-Projeto-Django-REST Sorry if my requirements.txt is messy. I didn’t set properly my venv and it pulled all packages of my system  De: Mujahid AbbasEnviado:quarta-feira, 27 de maio de 2020 19:16Para: Django usersAssunto: RES: Re: Deploy

RES: Re: Deploy on heroku with Geodjango/ postgis

2020-05-27 Thread Mujahid Abbas
Could you share you GitHub repo so that I'll help you -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this

Re: Deploy on heroku with Geodjango/ postgis

2020-05-27 Thread Akinfolarin Stephen
On Thursday, May 28, 2020 at 2:45:30 AM UTC+14, Samuel Nogueira wrote: > > Hi guys. Does anyone have/know a walkthrough for deploying my django > application using geodjango and postgres with postgis on heroku? I was > struggling with that yesterday until I've given up. > I was developing my

Deploy on heroku with Geodjango/ postgis

2020-05-27 Thread Samuel Nogueira
Hi guys. Does anyone have/know a walkthrough for deploying my django application using geodjango and postgres with postgis on heroku? I was struggling with that yesterday until I've given up. I was developing my django app in win10, with python 3.7.7. -- You received this message because you are

Re: deploy to Heroku " collectstatic --noinput "

2019-05-27 Thread Stephen L
This is a migration problem https://groups.google.com/forum/#!topic/django-users/M-C6cZ8S4r4 https://stackoverflow.com/questions/42613536/django-programming-error-column-does-not-exist-even-after-running-migrations always run migrations before committing to heroku, but you can also run it on

Re: deploy to Heroku " collectstatic --noinput "

2019-05-27 Thread Andrew C.
Follow a tutorial. 1) Hide your secret key and everything secretive in an environment variable. Or use Django-environ 2) Try python manage.py check —deploy 3) Debug is set to True... it should not be True if you’re publishing (deploying) On Mon, May 27, 2019 at 3:46 PM omar ahmed wrote: > i

Re: deploy to Heroku " collectstatic --noinput "

2019-05-27 Thread omar ahmed
i can't publish my project On Monday, May 27, 2019 at 8:45:59 PM UTC+2, Jamiu Olashile Salimon wrote: > > Hello Omar, what’s the problem? > > On Sun, 26 May 2019 at 10:35 PM, omar ahmed > wrote: > >> git push heroku master >> Counting objects: 4, done. >> Delta compression using up to 4

Re: deploy to Heroku " collectstatic --noinput "

2019-05-27 Thread salimon jamiu olashile
Hello Omar, what’s the problem? On Sun, 26 May 2019 at 10:35 PM, omar ahmed wrote: > git push heroku master > Counting objects: 4, done. > Delta compression using up to 4 threads. > Compressing objects: 100% (4/4), done. > Writing objects: 100% (4/4), 414 bytes | 0 bytes/s, done. > Total 4

Re: deploy to Heroku " collectstatic --noinput "

2019-05-27 Thread Joe Reitman
Is there a question here? I will point out what I see wrong in Settings.py. Allowed_hosts is empty. Need the host domain. Missing Port number for your database Did you migrate your models? Secret key should be stored in environment variable On Sunday, May 26, 2019 at 4:34:54 PM UTC-5, omar

deploy to Heroku " collectstatic --noinput "

2019-05-26 Thread omar ahmed
git push heroku master Counting objects: 4, done. Delta compression using up to 4 threads. Compressing objects: 100% (4/4), done. Writing objects: 100% (4/4), 414 bytes | 0 bytes/s, done. Total 4 (delta 3), reused 0 (delta 0) remote: Compressing source files... done. remote: Building source:

Re: Deploy on Heroku

2018-06-27 Thread TimT Vogt
Also the instruction is in the screen to $ heroku config:set DISABLE_COLLECTSTATIC=1 Seems heroku want you to type this command Verstuurd vanaf mijn iPhone > Op 27 jun. 2018 om 14:29 heeft Fabio C. Barrionuevo da Luz > het volgende geschreven: > > The error is explicitly here: > >

Re: Deploy on Heroku

2018-06-27 Thread Fabio C. Barrionuevo da Luz
The error is explicitly here: django.core.exceptions.ImproperlyConfigured: sets the REDIS_URL environment variable that is, you have not enabled the Redis plugin in Heroku. As shown in the cookiecutter-django tutorial, it's just you, inside the folder of your project, run: heroku

Deploy on Heroku

2018-06-27 Thread Elias Coutinho
Good Morning, Following the deploy model of this tutorial , I was not successful. Below the traceback of the terminal and then the heroku logs. Where did I go wrong? I did not identify what the message meant.

Re: Deploy on Heroku Error

2016-10-22 Thread Aline C. R. Souza
Hi Constantine, I did such changes because Gunicorn does not work on Windows, as the article itself states. And the psycopg2==2.5.3 does not work with Visual Studio Community 2015. Your comment made me have an idea. I'll try to deploy with psycopg2 instead of gunicorn. It is a sample blog for

Re: Deploy on Heroku Error

2016-10-21 Thread Constantine Covtushenko
Hi Aline, I thought that an initial idea of running application with `heroku local` is to check how it can run in heroku. Why did you change the Procfile in such a way? It supposed to use it the same as for heroku. Can you please try with Procfile without any local specific modifications?

Re: Deploy on Heroku Error

2016-10-21 Thread Aline C. R. Souza
Hello, Constantine, I have already followed this article and using `heroku local` the app runs fine. However, some things I did different: (i) I used psycopg2==2.6.2 instead of psycopg2==2.5.3, because the 2.5.3 version do not works with Visual Studio Community 2015. (ii) On my Procfile I put:

Re: Deploy on Heroku Error

2016-10-21 Thread Aline C. R. Souza
Hello Antony, This is the link to the Poll App: https://github.com/alinecrsouza/django-polls-app The changes I made on the imports (change to polls.models instead of .models), I made directly on my virtualenv, I didn't change the polls app code. I was afraid of losing some of my previous work

Re: Deploy on Heroku Error

2016-10-21 Thread Constantine Covtushenko
Hi Aline, I have encountered the problem described by you as well. I am using heroku for about 5 django projects. For some reason this problem does not exist when you run django server with manage.py command. Try to read that heroku

Re: Deploy on Heroku Error

2016-10-20 Thread Antonis Christofides
Hello, > Link to the repo: https://github.com/alinecrsouza/django-blog-app that repo only contains the blog app. Could you show us the polls app? Regards, Antonis Christofides http://djangodeployment.com On 2016-10-20 22:49, Aline C. R. Souza wrote: > Hello everybody, > > I am catching an

Deploy on Heroku Error

2016-10-20 Thread Aline C. R. Souza
Hello everybody, I am catching an error on trying to deploy my app on heroku. This is the traceback: File "/app/.heroku/python/lib/python3.5/site-packages/polls/admin.py", line 3, in 2016-10-20T18:42:46.734824+00:00 app[web.1]: File