Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
33 changes: 33 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#❗이슈 링크

- [프로젝트 이슈 링크]()

<br>

#⭐ PR 유형

- [ ] 기능 추가
- [ ] 버그 수정
- [ ] 디자인 수정
- [ ] 코드 리팩토링
- [ ] 코드 수정
- [ ] 주석 추가 및 수정
- [ ] 문서 수정
- [ ] 테스트
- [ ] 파일, 폴더, 애셋 수정
- [ ] 파일, 폴더, 애셋 추가
- [ ] 파일, 폴더, 애셋 삭제

<br>

#🗒️작업 내역

> 구현한 작업 내역

- 내용 추가 (스크린샷, 기능, 코드 등에 관한 내용)

<br>

#🖐️추가적으로 설명할 내용

- 추가적인 설명
23 changes: 23 additions & 0 deletions .github/workflows/ISSUE_TEMPLATE/issue.md
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
47 changes: 47 additions & 0 deletions .github/workflows/ci-cd-pipeline.yml
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
1 change: 1 addition & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/pig
Binary file not shown.

This file was deleted.

Loading