Re: Why server Heroky add random symbols between filename and his extension?

2016-05-08 Thread Bruno A.
What storage class are you using for your static files (setting STATICFILES_STORAGE)? It looks like what ManifestStaticFilesStorage would do... Also make sure that collectstatic

Re: ubuntu+nginx+django urlpatterns 404 not found

2016-05-08 Thread Gergely Polonkai
What do you mean it doesn't work? What error message you get? Are you sure it is provided by Django and not the webserver? Also, GMail is marking your message as a possible malware; consider pasting your urls.py inline instead of an attachment. On May 8, 2016 15:39, "minom du" wrote: > Hello ,ev

Re: Help Replicating a Django App Repo

2016-05-08 Thread Gergely Polonkai
Hello, 1. Clone the repo (success) 2. Install pip requirements (mention using virtualenv, but don't make it a requirement; pip install -r requirements.txt in a venv succeeded) 3. Set the SECRET_KEY environment variable (I think you shouldn't make creating secret.sh a requirement, just suggest it;

Why server Heroky add random symbols between filename and his extension?

2016-05-08 Thread Seti Volkylany
Website here https://personal-dicts.herokuapp.com . Not working static. -- You received this message because you a

Re: python - handling HTTP requests asynchronously

2016-05-08 Thread Avraham Serour
so it seems that what you need is not to handle http requests asynchronously, but to process async jobs requested by http. if that is the case celery is a popular option and relatively easy to setup, I personally would use it for such things. buton the other hand you are saying that the task in ha

How to support to connect GreenPlum with the 'django.db.backends.postgresql_psycopg2' ?

2016-05-08 Thread Ruping Wang
Hello, I got an error when I tried to utilize the 'django.db.backends.postgresql_psycopg2' to connect Greenplum.Given,The Greenplum is based on PostgreSQL to develop and Djando's backend support to connect PostgreSQL,so I guess it should be support Greenplum to connect.After I modified the dat

Re: Help Replicating a Django App Repo

2016-05-08 Thread Avraham Serour
if you are cloning a project it means you are not starting one from zero. so you already have a manage.py file, you don't need to run startproject On Sun, May 8, 2016 at 12:20 AM, Erin A wrote: > Hello, > > I am a junior software engineer and am quite new to Django. I built this > app