2024 여기톤 : HERETHON 16조
⭐️⭐️ 메인 브랜치로 dev 브랜치를 사용하였습니다.
- 서비스 소개
-
기술 스택
-
팀원 소개
-
폴더 구조
📂 all_project +---static | +---css | +---img | \---js +---accounts | +---__pycache__ | +---migrations | | \---__pycache__ | +---templates | | +---accounts | | | +---create_my_video.html | | | +---create_myportfolio.html | | | +---index.html | | | +---login.html | | | +---mylike.html | | | +---mypage.html | | | +---myviewhistory.html | | | +---signup.html | | | +---update_my_video.html | | | \---update_myportfolio.html | +---__init__.py | +---admin.py | +---apps.py | +---forms.py | +---models.py | +---tests.py | +---urls.py | \---views.py +---danjang_prj | +---__pycache__ | +---__init__.py | +---asgi.py | +---settings.py | +---urls.py | \---wsgis.py +---media | \---media | | \---default_mypage_image.jpg +---portfolios | +---__pycache__ | +---migrations | | \---__pycache__ | +---templates | | +---portfolios | | | +---portfolio_detail.html | | | \---portfolio_list.html | +---__init__.py | +---admin.py | +---apps.py | +---models.py | +---tests.py | +---urls.py | \---views.py +---videos | +---__pycache__ | +---migrations | | \---__pycache__ | +---templates | | +---videos | | | +---search.html | | | +---video_detail.html | | | \---video_list.html | +---__init__.py | +---admin.py | +---apps.py | +---models.py | +---tests.py | +---urls.py | \---views.py
-
개발환경에서의 실행 방법
$ python -m venv newvenv #가상환경 생성 $ source newvenv/Scripts/activate $ pip install django $ python -m pip install Pillow # 이미지 처리를 위한 라이브러리 설치 $ cd danjang_prj $ python manage.py runserver