user1426777
user1426777

Reputation: 41

Django: Remove dependency between apps in a project

I have a django project. I have created 2 apps(app1 and app2) under the project. Each app has its own urls.py and views.py. Settings.py is under the project folder.

What I want to do is: When I edit the views.py file for app1. And if I save the file with an incorrect indentation.

It brings down app2 as well.

I want to make them independent, so that no matter what change I do local to app1 it should not affect app2.

Is that possible ?

Upvotes: 0

Views: 344

Answers (1)

mipadi
mipadi

Reputation: 410582

You'll have to create a new Django project, and move app2 to that project.

Upvotes: 1

Related Questions