django app을 특정 폴더에 몰아넣기

GisangLee·2022년 8월 24일
0

my_module

목록 보기
31/33

Path 추가

sys.path.insert(0, os.path.join(프로젝트 경로, 'folder_name'))

- config/settings/common.py
BASE_DIR = Path(__file__).resolve().parent.parent
PROJ_DIR = BASE_DIR.parent
sys.path.insert(0, os.path.join(PROJ_DIR, 'api'))

....
...
..
DJANGO_APPS = [...]

THIRD_PARTY_APPS = [..]

PROJ_APPS = [
    "api",
    "django_app.apps.django_app_config", # users.apps.UsersConfig
    ...
    ...
    "utils",
]

INSTALLED_APPS = DJANGO_APPS + THRID_PARTY_APPS + PROJ_APPS
profile
포폴 및 이력서 : https://gisanglee.github.io/web-porfolio/

0개의 댓글