Recommended monitoring tools for Django

2015-02-22 Thread Guy Tamir
Hi all, I'm looking for recommended tools to monitor my Django server. I'm deploying to Heroku. Not sure what I should expect from the tool, the only thing I really need (the reason I started searching for a tool) is a way to set an API endpoint on my server and have the monitor check to see if

Re: Django-compressor manifest.json problem on Heroku

2014-12-16 Thread Guy Tamir
rson wrote: > > Hi Guy, > > I haven't used django_compressor, but it might help to configure > COMPRESS_OFFLINE_MANIFEST. > > Collin > > On Saturday, December 13, 2014 11:54:27 AM UTC-5, Guy Tamir wrote: > > I haven't configured django caching, how do I do t

Re: Django-compressor manifest.json problem on Heroku

2014-12-13 Thread Guy Tamir
hing configured? If not, then caching will only be > per-process and each process will need to fetch the information. (I'm > assuming CachedS3BotoStorage uses django's cache.) > > Collin > > On Wednesday, December 10, 2014 11:05:35 AM UTC-5, Guy Tamir wrote: > &

Django-compressor manifest.json problem on Heroku

2014-12-10 Thread Guy Tamir
Hey all, I'm trying to add django-compressor into my app. I'm deploying to Heroku. This is the code in my Settings file AWS_QUERYSTRING_AUTH = False AWS_STORAGE_BUCKET_NAME = os.environ.get('BUCKET_NAME') conn = S3Connection(AWS_ACCESS_KEY, AWS_SECRET_KEY,host= "s3-us-west-1.amazonaws.com") STAT

Re: Migrating to a custom User model with South

2014-09-01 Thread Guy Tamir
t; urls.py > wsgi.py > myappname/ > model.py > forms.py > views.py > urls.py > > 2014-09-01 13:05 GMT+01:00 Guy Tamir >: > >> myappname(dir): >> -settings.py >> - admin.py >> - forms.py >> - models.py >> -

Re: Migrating to a custom User model with South

2014-09-01 Thread Guy Tamir
myappname(dir): -settings.py - admin.py - forms.py - models.py - urls.py - views.py - wsgi.py On Monday, September 1, 2014 3:02:42 PM UTC+3, Helton Alves wrote: > > can you put here your full directory? > > > 2014-09-01 12:53 GMT+01:00 Guy Tamir >: > >> the layout is

Re: Migrating to a custom User model with South

2014-09-01 Thread Guy Tamir
> settings.py > apps/ > myappname/ > > if in another directory, on INSTALLED_APPS have to are this mode > "directory.myappname". > > > 2014-09-01 12:12 GMT+01:00 Guy Tamir >: > >> Yes its there. >> Not sure if this can cause an issue but

Re: Migrating to a custom User model with South

2014-09-01 Thread Guy Tamir
me" in INSTALLED_APPS on settings ? > > > 2014-09-01 8:17 GMT+01:00 Guy Tamir >: > >> Hey all, >> >> I'm trying to create a custom User model on an existing project (Django >> 1.5.5). >> I followed this tutorial >> <http://www.caktus

Migrating to a custom User model with South

2014-09-01 Thread Guy Tamir
Hey all, I'm trying to create a custom User model on an existing project (Django 1.5.5). I followed this tutorial , I created the new model, ran a "schemamigration" once, which created the tables in the DB, also

Re: Different URLCONF for different domains

2014-03-12 Thread Guy Tamir
Hey, I'm aware of what your saying but I'd I like to reconfigure in a way similar to django-subdomains only instead of specifying the sub domain I'll specify the domain.. Is there a good hack you can think of that can help me in this case? O

Different URLCONF for different domains

2014-03-12 Thread Guy Tamir
Hey all, I have a Django app that serves to multiple domains. In the primary domain (lets call it primary.com) I have some page that are server via the path - primary.com/a/ I want users from another domain (lets call it secondary.com) to be able to get to this path : primary.com/a/ by entering

Uploading file and serving them with CDN - Best practices

2013-08-06 Thread Guy Tamir
Hi all, My question is not a pure Django question, but since i'm working with django and there are probably people here with experience i'll try anyway.. I'm working on an app that runs on 2 servers, the first is a management server where my users in certain page can upload images\videos to my

Re: django workaround for multiple primary keys or sqlalchemy

2013-07-29 Thread Guy Tamir
SQLAlchemy is going to cause issues if you try to > use any 3rd party Django apps as well. > > On Monday, July 29, 2013 11:39:20 AM UTC-4, Guy Tamir wrote: >> >> Hi all, >> >> i'm fairly new to Django and i have a question regarding the best >> practi

django workaround for multiple primary keys or sqlalchemy

2013-07-29 Thread Guy Tamir
Hi all, i'm fairly new to Django and i have a question regarding the best practice for a situation i've got. I'm working on a new project and after designing my ERD I know i need a few tables to have multiple primary keys and one table with triple primary keys. after reading about the subject