Questions tagged [django-project-architect]

21 questions
0
votes
1 answer

How to reuse Django app into another project

I have made a user registration app in a Django project. I want to add this app (reuse) into another project. How can I do this ?
0
votes
1 answer

Running apps present in same project in different ports at the same time using django

I am writng multiple apps inside the same django project Now I want to run each app individually my project name is : myproject and i have 2 apps inside it : app1, app2 Now i want to run app1 in different port(7000) and app2 in different…
0
votes
2 answers

wondering how to architect this in django

I am now working on a big django project. Huge topicportal with many topiccenters and book and other media profiles and author profiles and normal user profiles who can also have author profiles.. Now what i do is: One django app, templates…
doniyor
  • 36,596
  • 57
  • 175
  • 260
0
votes
1 answer

better architecture in django is different apps. or single App for different components?

I have intended to have an app. where I want to have different things having relations with each other and want to know that whether I should have them as just different models or as differnt apps. Obviously if this is student, teacher in LMS then…
Hafiz
  • 4,187
  • 12
  • 58
  • 111
-2
votes
1 answer

How to get location based Admin views in Django?

I am new to Django and I am working on online food ordering system. I am going to use Django for backend. I am not sure about how to show various admin views based on different restaurants suppose I have restaurants in 3 three cities A,B and C. How…
-3
votes
1 answer

Where store Tests (project structure - best practice)?

We have many different ways to implement project structure in GO. My question is where the best way to store tests implementation: separately (as Java Maven/Gradle standard) ├── pkg │ ├── colocator │ │ ├── some_impl.go │ │ └── ... │ ├──…
1
2