aldesabido
aldesabido

Reputation: 1288

DJango INSTALLED_APPS

I am just curious, Is it okay to remove some of the default Installed Apps in DJango Settings? See image below.

enter image description here

These apps creates a new tables in my database and I don't know when can I use those tables.

enter image description here

Thank you!

Upvotes: 1

Views: 7222

Answers (1)

a1gemmel
a1gemmel

Reputation: 41

You can, though if you're unsure the purpose of the app it would be best to leave it included.

In fact, the Django documentation mentions this in the very first tutorial:

Like we said above, the default applications are included for the common case, but not everybody needs them. If you don’t need any or all of them, feel free to comment-out or delete the appropriate line(s) from INSTALLED_APPS before running migrate. The migrate command will only run migrations for apps in INSTALLED_APPS.

https://docs.djangoproject.com/en/1.8/intro/tutorial01/

Upvotes: 4

Related Questions