Skip to content

Commit c9db0c1

Browse files
committed
feat: 기본 파일 추가
1 parent 7a06012 commit c9db0c1

File tree

5 files changed

+186
-0
lines changed

5 files changed

+186
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: '[bug]'
5+
labels: 'bug'
6+
assignees: ''
7+
8+
---
9+
10+
## 🔥 버그
11+
<!-- 스크린 샷, 작동 환경 (OS, device 등)을 적어주세요. -->
12+
13+
## 📝 todo
14+
- [ ]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: '[feat]'
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
## 👀 Issue
11+
<!-- 이슈를 간단히 설명해주세요 -->
12+
13+
### ✅ Todo
14+
- [ ]

.github/pull_request_template.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## PR 요약
2+
<!-- 해당 pr에서 작업한 내역을 적어주세요. -->
3+
4+
#### 📌 변경 사항
5+
<!-- 변경사항 및 주의 사항 (모듈 설치 등)을 적어주세요. -->
6+
7+
##### ✅ PR check list
8+
<!-- 피드백 받고 싶거나, 공유할 사항을 적어주세요 -->
9+
10+
#### Linked Issue
11+
<!-- 해결한 이슈 넘버를 붙여주세요. -->
12+
close #
13+
14+
15+
<!-- PR 요청 전 마지막 확인!
16+
- commit message가 적절한지 확인해주세요.
17+
- 마지막으로 Coding Convention을 준수했는지 확인해주세요.
18+
- 적절한 branch로 요청했는지 확인해주세요.
19+
- Assignees, Label을 붙여주세요.
20+
- 해결한 이슈를 Link 해주세요.
21+
- PR이 승인된 경우 해당 브랜치는 삭제해주세요.
22+
-->
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: pr-size-labeler
2+
3+
on:
4+
pull_request:
5+
branches: [ develop ]
6+
7+
jobs:
8+
sizer:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Pull Request size labeler
12+
uses: CodelyTV/pr-size-labeler@v1
13+
with:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/xcode,swift,objective-c,macos,swiftpackagemanager,swiftpm,cocoapods,git,fastlane,homebrew
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift,objective-c,macos,swiftpackagemanager,swiftpm,cocoapods,git,fastlane,homebrew
3+
4+
### fastlane ###
5+
fastlane/report.xml
6+
fastlane/Preview.html
7+
fastlane/screenshots/**/*.png
8+
fastlane/screenshots/screenshots.html
9+
fastlane/test_output
10+
fastlane/FastlaneRunner
11+
12+
### Git ###
13+
*.orig
14+
*.BACKUP.*
15+
*.BASE.*
16+
*.LOCAL.*
17+
*.REMOTE.*
18+
*_BACKUP_*.txt
19+
*_BASE_*.txt
20+
*_LOCAL_*.txt
21+
*_REMOTE_*.txt
22+
23+
### Homebrew ###
24+
Brewfile.lock.json
25+
26+
### macOS ###
27+
# General
28+
.DS_Store
29+
.AppleDouble
30+
.LSOverride
31+
Icon
32+
._*
33+
.DocumentRevisions-V100
34+
.fseventsd
35+
.Spotlight-V100
36+
.TemporaryItems
37+
.Trashes
38+
.VolumeIcon.icns
39+
.com.apple.timemachine.donotpresent
40+
.AppleDB
41+
.AppleDesktop
42+
Network Trash Folder
43+
Temporary Items
44+
.apdisk
45+
46+
### Objective-C ###Swift.gitignore
47+
xcuserdata/
48+
*.xcscmblueprint
49+
*.xccheckout
50+
build/
51+
DerivedData/
52+
*.moved-aside
53+
54+
## App packaging
55+
*.ipa
56+
*.dSYM.zip
57+
*.dSYM
58+
59+
Carthage/Build/
60+
61+
62+
iOSInjectionProject/
63+
64+
### Objective-C Patch ###
65+
66+
### Swift ###
67+
# Xcode
68+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
69+
70+
71+
## Playgrounds
72+
timeline.xctimeline
73+
playground.xcworkspace
74+
75+
.build/
76+
77+
### Firebase ###
78+
.idea
79+
**/node_modules/*
80+
**/.firebaserc
81+
Google
82+
GoogleService-Info.plist
83+
84+
### Firebase Patch ###
85+
.runtimeconfig.json
86+
.firebase/
87+
GoogleService-Info.plist
88+
# End of https://www.toptal.com/developers/gitignore/api/firebase
89+
90+
# Accio dependency management
91+
Dependencies/
92+
.accio/
93+
94+
### SwiftPackageManager ###
95+
Packages
96+
xcuserdata
97+
98+
99+
### SwiftPM ###
100+
101+
102+
### Xcode ###
103+
# Xcode
104+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
105+
106+
/*.gcno
107+
108+
### Xcode Patch ###
109+
*.xcodeproj/*
110+
!*.xcodeproj/project.pbxproj
111+
!*.xcodeproj/xcshareddata/
112+
!*.xcworkspace/contents.xcworkspacedata
113+
**/xcshareddata/WorkspaceSettings.xcsettings
114+
115+
### Tuist ###
116+
XCConfig/
117+
Tuist/Dependencies
118+
Derived/
119+
*.xcworkspace
120+
*.xcodeproj
121+
*.p12
122+
master.key

0 commit comments

Comments
 (0)