Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Import Existing Django Application into Pycharm

I have an existing Django application. I want to start developing it in Pycharm, instead of sublime text and command line. I have opened my existing directory (cloned from my git repo) into Pycharm but I can not for the life of me figure out how to set it as a django project. All the examples I see are new projects from scratch or existing pycharm projects, neither of which applies to me. I'm running on a brand new mac, if that helps (I'm coming from Ubuntu)

like image 921
Feasoron Avatar asked Jan 31 '26 15:01

Feasoron


1 Answers

You need to enable Django Support in the project settings under Project Settings -> Django. You also would need to set up the project root, path to settings.py and manage.py.

like image 170
alecxe Avatar answered Feb 02 '26 05:02

alecxe