django-apps Questions
1
I have a large Django project which is basically a monolith containing apps.
I need to break it to microservices.
I have 2 questions that I couldn't find a clear answers to:
Currently we're usin...
Yorgo asked 20/5, 2018 at 14:13
0
Imagine you create a reusable django app 'A' which depends on another reusable django app 'B'. Now if I want to use an app 'A' I have to add not only 'A' but also 'B' in INSTALLED_APPS? How do I ad...
Uzbek asked 30/3, 2018 at 11:13
3
I want to know how to divide a project having a hierarchical structure into applications. Let's say that I'm trying to build something like github.com.
In github.com, an account has some repositori...
Pier asked 13/3, 2018 at 16:31
4
I have a question about putting django apps into "apps" subdirectory. I have the app called “faktura” in a project_root. I didn’t like the fact it lies there and I want to store all my apps under “...
Uppsala asked 25/4, 2012 at 10:6
2
Solved
Have gone through
Django 1.9 deprecation warnings app_label
but answers couldn't fix my problem, so asking again.
I have an app that is added to INSTALLED_APPS in settings.
when ever I run man...
Divorce asked 2/7, 2015 at 8:34
3
Solved
Following tutorial on Django reusable apps things work fine. But I have some questions about the process of developing and packaging a Django app.
1 - In the tutorial, the app is developed first w...
Rema asked 9/6, 2015 at 22:11
1
Solved
I am trying to install django-registration-redux with a customUser.
I have included this in my settings.py:
AUTH_USER_MODEL = 'app.customUser'
Registration Form is in a directory ../registrati...
Oddball asked 13/11, 2015 at 4:29
2
I Django can 2 apps share 1 model, or 2 apps must define the same model inside. so app1 and app1 can have have same products model inside them for example?
Overplay asked 24/9, 2015 at 10:41
1
I'm still very new to development...
I would like to simplify django-friendship and add some different functionality. I've forked it on GitHub. I'm not sure what to do next.
Where should the loca...
Flattish asked 10/8, 2015 at 10:14
4
Are there any Django apps equivalent to Drupal's Views and CCK modules?
I find Django much more flexible and logically organized than Drupal. But I think Drupal's Views and CCK modules are killer ...
Maida asked 5/7, 2010 at 7:31
6
Solved
I want to implement Facebook connect login for my Django site and I've checked the already existing apps.
So far, I have found Django-Socialauth, django-socialregistration, and django-facebookconn...
Edmondo asked 15/2, 2010 at 19:6
2
This question has been troubling me for some days now and I've tried asking in many places for advice, but it seems that nobody can answer it clearly or even provide a reference to an answer.
I've...
Colugo asked 16/2, 2014 at 13:36
2
Solved
I've found 3 row-level permission solutions for Django 1.2+
django-object-permissions
django-guardian
django-authority
Could someone tell if there is any recommended more than the others, what ...
Iatrochemistry asked 18/6, 2012 at 12:10
2
Solved
I'm really struggling with this whole app-idea. I read a lot of tutorials and style guides and I know I should try to create specialized apps, that do exactly one thing. This all makes sense ...
Rhigolene asked 16/8, 2013 at 10:11
2
Solved
I'm new to South so I am wondering if I ever need to call
./manage.py syncdb
or doing
./manage.py schemamigration appname --auto
./manage.py migrate appname
is sufficient in all cases South ...
Pittance asked 13/6, 2011 at 21:20
2
Solved
Which is the best way to have two different repositories on the same Django project?
I started developing a project months ago and I have the whole folder in the repository. I want to reuse some a...
Fortress asked 21/12, 2012 at 10:38
1
Solved
I'm working on a django app (django-flux) and I'm trying to get it to properly install with pip from pypi. From this blog post and the distutils documentation, it seems like my setup.py and MANIFES...
Earring asked 3/12, 2012 at 23:18
5
Solved
I would like to bundle up css and javascript files. I also want to send far-future expire headers to clients, so I need file versioning.
A quick search across the Internet has shown there a...
Bunton asked 5/11, 2009 at 22:22
1
Solved
I am working on a django app that needs a directory to download and store files.
I want to keep my app reusable so I do not want to hard code the path of this directory.
So I want to make this pat...
Recife asked 25/2, 2012 at 18:41
6
Solved
So in my Django project I have a few different apps, each with their own Models, Views, Templates, etc. What is a good way (the "Django" way) to have these Apps communicate?
A specific example wou...
Fogdog asked 13/1, 2010 at 4:15
2
I'm running django_coverage over a project with the command test_coverage. It's working, but it's including in the output and final calculation code in /usr/local/lib/python2.6/dist-packages. I'm n...
Berkly asked 16/11, 2010 at 14:2
1
Solved
I have been developing in django for sometime now, and have developed a neat website having functionality such as writing blogs, posting questions, sharing content etc. However there is still one t...
Abduce asked 22/12, 2011 at 11:49
3
Solved
I'M using django south on a bigger project, the only thing I don't like about it, that you can't create schemamigrations for all of your apps at once (I have a lot of apps that inherit from the sam...
Monadnock asked 2/7, 2010 at 13:51
2
Solved
I guess i have a simple question about better code organization.
Say i have multiple apps that also implement how these apps should be represented on presentation layer.
I am trying to understa...
Paleolithic asked 16/11, 2011 at 9:7
1
Solved
Salam and hi,
I am using django and breaking two parts of project in two apps. However there is a reference field of one table as foreign key of other in terms of db. So how can I use one app's mo...
Xylol asked 6/11, 2011 at 2:52
© 2022 - 2024 — McMap. All rights reserved.