-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore] : backend, frontend, 개발 환경세팅
[chore] : backend, frontend, 개발 환경세팅
- Loading branch information
Showing
4,206 changed files
with
107 additions
and
615,387 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#❗이슈 링크 | ||
|
||
- [프로젝트 이슈 링크]() | ||
|
||
<br> | ||
|
||
#⭐ PR 유형 | ||
|
||
- [ ] 기능 추가 | ||
- [ ] 버그 수정 | ||
- [ ] 디자인 수정 | ||
- [ ] 코드 리팩토링 | ||
- [ ] 코드 수정 | ||
- [ ] 주석 추가 및 수정 | ||
- [ ] 문서 수정 | ||
- [ ] 테스트 | ||
- [ ] 파일, 폴더, 애셋 수정 | ||
- [ ] 파일, 폴더, 애셋 추가 | ||
- [ ] 파일, 폴더, 애셋 삭제 | ||
|
||
<br> | ||
|
||
#🗒️작업 내역 | ||
|
||
> 구현한 작업 내역 | ||
- 내용 추가 (스크린샷, 기능, 코드 등에 관한 내용) | ||
|
||
<br> | ||
|
||
#🖐️추가적으로 설명할 내용 | ||
|
||
- 추가적인 설명 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: 이슈 템플릿 | ||
about: 이슈 설명, 할일 목록, 기타 사항 | ||
title: '' | ||
labels: | ||
"\U0001F41EBug, \U0001FA7BDeploy, \U0001F4D1Docs, ⭐Feature, \U0001F6E0️fix, | ||
❗modify, \U0001F527Refactor, ⚙️Setting, ✅Test" | ||
assignees: dla8156, InSange, seonna7 | ||
--- | ||
|
||
#🌝Description | ||
|
||
- 이슈에 대한 설명 | ||
|
||
<br> | ||
|
||
#📋To-do List | ||
|
||
- [ ] 작업 목록 | ||
|
||
<br> | ||
|
||
#⚠️ETC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: CI/CD Pipeline | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Check out the repository code | ||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
|
||
# Set up Python environment | ||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.12 | ||
|
||
# Create and activate virtual environment, install dependencies | ||
- name: Install dependencies | ||
run: | | ||
python -m venv venv | ||
source venv/bin/activate | ||
pip install --upgrade pip | ||
pip install -r requirements.txt | ||
# Build Docker image | ||
- name: Build Docker image | ||
run: | | ||
docker build -t pig . | ||
# Deploy Docker container | ||
- name: Deploy Docker container | ||
run: | | ||
CONTAINER_ID=$(docker ps -q --filter ancestor=pig) | ||
if [ -n "$CONTAINER_ID" ]; then | ||
docker stop $CONTAINER_ID | ||
docker rm $CONTAINER_ID | ||
fi | ||
docker run -d -p 8000:8000 pig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/pig |
Binary file removed
BIN
-136 KB
backend/pig/Lib/python3.12/site-packages/__pycache__/typing_extensions.cpython-312.pyc
Binary file not shown.
1 change: 0 additions & 1 deletion
1
backend/pig/Lib/python3.12/site-packages/annotated_types-0.7.0.dist-info/INSTALLER
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.