http://mslee5240.pythonanywhere.com/
https://www.notion.so/18b6657aabea493183552750c75df654
- 멋쟁이사자처럼 SCH 9기 ㅁㅆㅁㅌ
- 간단한 테스트 13개를 통해 자신에게 맞는 쓸모없는 선물을 추천해주는 웹 서비스
- 중국학과 18학번 이민수
- 컴퓨터소프트웨어학과 21학번 윤현지
- 빅데이터공학과 18학번 정은서 (Team Leader✨)
- 사물인터넷학과 18학번 배연주
- Django
- Python3
- HTML, CSS
- JavaScript
- 가상환경 생성 및 실행
python -m venv (가상환경 이름)
- (Windows)
source (가상환경 이름)/Scripts/activate
or (OS X/Linux)source (가상환경이름)/bin/activate
- Django 설치
pip install django
- PIL(Python Image Library) 설치
pip install pillow
- 모델 생성
python manage.py makemigrations
python manage.py migrate
- admin 관리자 계정(superuser) 생성
python manage.py createsuperuser
- 서버 실행
python manage.py runserver