|
If I was to integrate a third-party GPLv3,v2 or LGPL django app in my django project, would the licence apply to the complete project or just the third-party application I'm using?
Started by Rui Ferreira on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Most Django-related code is under MIT licenses, so it's not unreasonable.
Or clarifies his intentions.
|
|
I love the abstract database API that comes with Django, I was wondering if I could use this (or something similar) to model, access, and manage my (postgres) database for my non-Django Python projects.
Started by KeyboardInterrupt on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To use Django's ORM by itself:
Using the Django ORM as a standalone component Use Django ORM as standalone Using settings without setting....
Django has its own, built-in.
What you're looking for is an object-relational mapper (ORM).
|
|
Hi, can anyone please suggest me good open source django project to learn django development.
Started by Software Enthusiastic on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
If you're looking to learn....
One of the best for newbie: 13 screencasts "Django Florenzano) show, how he is developing project startthedark.com - you can also download source files.
Www.django-cms.org/ for a large scale project.
|
Ask your Facebook Friends
|
Are there any large django powered sites who has made their source available? I would love to see how a large Django project is built. :)
Started by tkalve on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
From the front page:
Satchmo's mission is to use Django to create an open source framework for creating unique and robust is a social networking site built....
Of this helpful?
Satchmo is an open source e-commerce software built on Django.
|
|
What is the best location to put templates in django project?
Started by Vishal on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Recommend creating a templates directory within your Django project (i.e., within the mysiteFrom the Django book, chapter 4 :
If you can’t think of an obvious place to put your templates, we my CSS/JS/images etc
/templates for my....
|
|
Aside from not deploying a Django project to the web site root directory, is there any specific benefit to running Django projects from one location, e.g. /var/djagno-projects/ -project/ vs. (in a shared hosting environment) running each Django project...
Started by bennylope on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I roughly followed this guide when creating a server to handle several Django sites, and I like the folder organization....
The WSGI script file in a completely different directory outside of Django project, which again that fits your needs.
|
|
What is the best way to layout a large django project? The tutuorials provide simple instructions for setting up apps, models, and views, but there is less information about how apps and projects should be broken down, how much sharing is allowable/necessary...
Started by rcreswick on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It's pre-0.1, so no link yet will automatically be....
The Django project I'm working on (called Basie.
Still like to see some examples / suggestions for app/project break down, and big django sites 27 as a demo project.
|
|
I was considering creating a separate SQLite database for certain apps on a Django project.
However, I did not want to use direct SQLite access if possible. Django-style ORM access to these database would be ideal.
Is this possible?
Thank you.
Started by Rui Vieira on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
See the Django wiki page, Multiple Database Support in Django....
If you want to have an app-specific database, you cannot do so through the Django ORM.
Currently no -- each project uses one database, and every app must exist within it.
|
|
Is there an easy way to count the lines of code you have written for your django project?
Edit: The shell stuff is cool, but how about on Windows?
Started by Joe on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Packages/coreutils.htm )
wc *.py
You might want to look at CLOC -- it's not Django specific.
|
|
To deploy a site with python/django/mysql I had to do these on the server(RedHat Linux):
Install MySQLPython Install ModPython Install Django (using python setup.py install ) Add some directives on httpd.conf file (or use .htaccess) But, when I deployed...
Started by mshsayem on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Web....
I copy the virtual installed it.
You can script some of this, if you want python virtualenv and pip,i developed my django project at the virtual environment.
The deployment process of django project be made easier?
No.
|