Skip to content

2023-HERETHON/2023-Herethon-1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

2023-Herethon-1

2023 여기톤 : HERETHON 1조

  • 서비스 소개

    ANDO(안전한 도착, 안도)

    혼자 걷던 여대생의 불안한 거리를 안도하고 나의 귀가친구전하게 착할 수 있도록 , 저희 ANDO가 연결해드리겠습니다.

    핵심기능

    회원가입 시 학생증 이미지를 업로드한 여대생들만이 관리자에 의해 승인 가능

    • 작성자가 원하는 장소 , 수단으로 귀가 친구 모집 글 게시
    • 모집 글에 자유롭게 댓글을 작성하여 소통
    • 게시된 타인의 모집 글에서 귀가 친구 신청 후 참석
    • 참석 후 모집 완료 글에서 안전 귀가 인증 리뷰 작성
  • 개발환경에서의 실행 방법

    ⌨️ **install**
    • pip install django==3.2.10
    • pip install pillow
    • pip install python-dotenv
    ⌨️ **runserver**
    • python manage.py runserver

⚙️기술 스택

✔️ 기획디자인

✔️ 프론트엔드

✔️ 백엔드

✔️ 협업도구

😎팀원소개


FE 팀장 : 이지현


FE 팀원 : 김서윤


FE 팀원 : 박주희


BE 팀원 : 김지연


BE 팀원 : 박서윤


BE 팀원 : 심예원

📂폴더 구조

📂 2023-Herethon-1
└─ herethon1
 │
 ├─ 📂 herethon1
 │  ├─ __init__.py
 │  ├─ asgi.py
 │  ├─ settings.py
 │  ├─ urls.py
 │  └─ wsgi.py
 │
 ├─ 📂 account
 │  ├─ 📂 templates
 │  │   ├─ admin_page.html
 │  │   ├─ form_errors.html
 │  │   ├─ index.html
 │  │   ├─ login.html
 │  │   ├─ my_page.html
 │  │   ├─ my_page_update.html
 │  │   ├─ password_reset.html
 │  │   ├─ password_reset_complete.html
 │  │   ├─ password_reset_confirm.html
 │  │   ├─ password_reset_done.html
 │  │   ├─ password_reset_email.txt
 │  │   ├─ profile_page.html
 │  │   └─ signup.html
 │  │
 │  ├─ __init__.py
 │  ├─ admin.py
 │  ├─ apps.py
 │  ├─ forms.py
 │  ├─ models.py
 │  ├─ tests.py
 │  ├─ urls.py
 │  └─ views.py
 │
 ├─ 📂 boardapp
 │  ├─ 📂 templates
 │  │     └─ 📂 board
 │  │         ├─ board_detail.html
 │  │         ├─ board_list.html
 │  │         ├─ board_post.html
 │  │         ├─ comment_edit.html
 │  │         ├─ done_list.html
 │  │         └─ search.html
 │  │
 │  ├─ __init__.py
 │  ├─ admin.py
 │  ├─ apps.py
 │  ├─ forms.py
 │  ├─ models.py
 │  ├─ tests.py
 │  ├─ urls.py
 │  └─ views.py
 │
 ├─ 📂 image
 │
 ├─ 📂 profile
 │  └─ user.png
 │
 ├─ 📂 templates
 │  └─ base.html
 │
 ├─ .env
 │
 ├─ db.sqlite3
 │
 ├─ main.py
 │
 ├─ manage.py
 │
 └─ README.md