36👍
✅
Deleting the project folder is sufficient and make changes in your apache server too[if you have one].
6👍
To delete the project you can delete the project folder.
But this method is good only if you use SQLite as a database.
If you use any other database like Postgresql with Django, you need to delete the database manually.
If you are on VPS. Simply go to the folder where your project folder resides and put command rm -r projectfoldername
This should delete the folder and it’s contents.
- [Django]-PyCharm: DJANGO_SETTINGS_MODULE is undefined
- [Django]-Exclude fields in Django admin for users other than superuser
- [Django]-Django.db.utils.ProgrammingError: relation "bot_trade" does not exist
0👍
As @Neverbackdown said deleting folder would be sufficient, but along with that you would also want to delete database or tables.
- [Django]-How can I chain Django's "in" and "iexact" queryset field lookups?
- [Django]-Django composite unique on multiple model fields
- [Django]-Django models.py Circular Foreign Key
0👍
Yes.
Just Delete the folder. If the project is installed in your settings.py, remove it.
- [Django]-Access web server on VirtualBox/Vagrant machine from host browser?
- [Django]-Django 1.7 – App 'your_app_name' does not have migrations
- [Django]-Django :How to integrate Django Rest framework in an existing application?
Source:stackexchange.com