Re: maultiple .js files for debug and one minimized .js for production

2011-11-12 Thread Eric Chamberlain
We serve the static files from Amazon S3. -- Eric Chamberlain, Founder RingFree Mobility Inc. On Nov 8, 2011, at 1:46 AM, Gelonida N wrote: > Hi, > > > I'm having an rather weak (CPU) server accesible over a rather slow network. > > Therfore my plan is to use > multiple readable debuggable

Re: maultiple .js files for debug and one minimized .js for production

2011-11-10 Thread Gelonida N
On 11/08/2011 07:37 PM, Fabian Ezequiel Gallina wrote: > 2011/11/8 Andres Reyes > > > I've been using django-compressor and totally recommend it > > > https://github.com/mintchaos/django_compressor > > > > I second that, works like charm

Re: maultiple .js files for debug and one minimized .js for production

2011-11-08 Thread Fabian Ezequiel Gallina
2011/11/8 Andres Reyes > I've been using django-compressor and totally recommend it > > > https://github.com/mintchaos/django_compressor > > > I second that, works like charm and I really like the way it solved the thing with a templatetag instead of having to define file

Re: maultiple .js files for debug and one minimized .js for production

2011-11-08 Thread Andres Reyes
I've been using django-compressor and totally recommend it https://github.com/mintchaos/django_compressor 2011/11/8 Gelonida N > Hi, > > > I'm having an rather weak (CPU) server accesible over a rather slow > network. > > Therfore my plan is to use > multiple readable

maultiple .js files for debug and one minimized .js for production

2011-11-08 Thread Gelonida N
Hi, I'm having an rather weak (CPU) server accesible over a rather slow network. Therfore my plan is to use multiple readable debuggable css files for debugging and a single, minizmized .js for for production. This will affect some of my templates. How do you handle this setup in your