Re: Django database-api

2012-04-03 Thread Eugenio Minardi
Hi, Do you mean the SQL generated by your model? In this case you can use python manage.py sql APPNAME On Tue, Apr 3, 2012 at 8:45 AM, KasunLak wrote: > Hi all, > > I just wonder is there a way to browse/view the code of database api > methods generated? Is there

Re: where do you host your django app and how to you deploy it?!

2012-04-04 Thread Eugenio Minardi
Servage for low-cost websites https://www.servage.net/wiki/Install_Djangounlimited space, domains, ecc. With the coupon code django2012 you can get the discount Eugenio On Wed, Apr 4, 2012 at 3:24 PM, Dan Gentry wrote: > Dreamhost shared account > >

Re: external css and javascript files

2012-04-17 Thread Eugenio Minardi
Hi, you can find a detailed guide here https://docs.djangoproject.com/en/dev/howto/static-files/ On Tue, Apr 17, 2012 at 4:18 PM, dummyman dummyman wrote: > How to include external css and javascript files in django ? I tried many > forums,django docs > Couldnt get a

Re: Distributing Django apps

2012-04-23 Thread Eugenio Minardi
Hi, You can have a look at http://pypi.python.org/pypi/django-fagungis/ -- Eugenio On Mon, Apr 23, 2012 at 2:00 PM, Steve Kilbane wrote: > Hi all, > > I'm new to Python. I'm in the process of developing an open-source > app. Is there a guide for packaging up and

Re: Git migration

2012-05-03 Thread Eugenio Minardi
Hi, It is more than one year I am using GIT with Django and there are no problems, just make sure that the statics stays out of the repository and that into the .gitignore file there are no required path or extensions Eugenio Il giorno 04/mag/2012 05:55, "Larry Martell"

Re: Git migration

2012-05-04 Thread Eugenio Minardi
Hi, to be sure that all your code is into the repo try with git status and check if all the files are tracked. Then with git add NAME you can track a single file, a folder or a set of file and folder. With git add . you can track all the files. Eugenio On Fri, May 4, 2012 at 3:46 PM, Stanwin

Re: Django con Apache

2012-05-14 Thread Eugenio Minardi
Hi, you can find a nice tutorial here http://projects.unbit.it/uwsgi/wiki/Example Eugenio On Mon, May 14, 2012 at 3:09 PM, Segundo Acosta Delgado wrote: > Holas developers!! , tengo un centOs 6.2 y quiero hacer correr Django con > apache, django corre sin problemas pero al

Re: Help - Which IDE is best to use.

2012-05-14 Thread Eugenio Minardi
Aptana works fine as soon as the workspace is light. We switched to PyCharm if you use it for work you'll get back the money you spent by saving time. Eugenio Il giorno 14/mag/2012 18:09, "doniyor" ha scritto: > aptana is the best, free and light. > > Am Montag, 14.

Re: Distributing Django apps

2012-05-15 Thread Eugenio Minardi
case in point: is it > standard practice to upload settings.py, given that it contains the > secret key and local database configurations? > > Thanks, > > steve > > On Apr 23, 1:19 pm, Eugenio Minardi <eugenio.mina...@gmail.com> wrote: > > Hi, > > > > You can