Skip to content

Commit 5da6fd3

Browse files
committed
initial commit
0 parents  commit 5da6fd3

File tree

471 files changed

+20929
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

471 files changed

+20929
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.pbxproj binary merge=union
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: SeeMeet Bug Issue Template
3+
about: 씨-밋 버그 이슈 템플릿
4+
title: "[BUG]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
## 🐞 버그 설명
11+
<!-- source code 내에서 어떻게해서 버그가 발생했는지 설명해주세요 -->
12+
<!-- 스크린 샷, 작동 환경 (OS, device 등)과 관련이 있다면 추가해주세요 -->
13+
14+
## 📝 todo
15+
- [ ] todo
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: SeeMeet Feature Issue Template
3+
about: 씨-밋 기능 이슈 템플릿
4+
title: "[FEAT]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
## 📌 Feature Issue
11+
<!-- 구현할 기능에 대한 내용을 설명해주세요. -->
12+
13+
## 📝 To-do
14+
<!-- 해야 할 일들을 적어주세요. -->
15+
- [ ] todo !
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: SeeMeet Hotfix Issue Template
3+
about: 씨-밋 핫픽스 이슈 템플릿
4+
title: "[HOTFIX]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
## 🐞 버그 설명
11+
<!-- source code 내에서 어떻게해서 버그가 발생했는지 설명해주세요 -->
12+
<!-- 스크린 샷, 작동 환경 (OS, device 등)과 관련이 있다면 추가해주세요 -->
13+
14+
15+
## 📝 todo
16+
- [ ] todo
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: SeeMeet Refactor Issue Template
3+
about: 씨-밋 리팩토링 이슈 템플릿
4+
title: "[REFACTOR]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
## 🔨 Refactor Issue
11+
<!-- 구현할 에 대한 내용을 설명해주세요. -->
12+
13+
## 📝 To-do
14+
<!-- 해야 할 일들을 적어주세요. -->
15+
- [ ] todo !

.github/PULL_REQUEST_TEMPLATE.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## 📌 관련 이슈
2+
<!-- 관련있는 이슈 번호(#000)을 적어주세요.
3+
해당 pull request merge와 함께 이슈를 닫으려면
4+
closed: #Issue_number를 적어주세요 -->
5+
6+
7+
## 📌 변경 사항 및 이유
8+
<!-- 변경한 내용과 그 이유를 적어주세요. -->
9+
10+
11+
## 📌 PR Point
12+
<!-- 리뷰어 분들이 집중적으로 보셨으면 하는 내용을 적어주세요 -->
13+
14+
15+
## 📌 참고 사항
16+
<!-- 참고할 사항이 있다면 적어주세요. -->
17+
18+
## 📌 구동 영상
19+
<!-- 구동되는 영상/움짤/캡쳐 등 리뷰어들이 참고할 수 있는 파일을 업로드 해주세요.-->

.gitignore

+146
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode,cocoapods,macos
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode,cocoapods,macos
4+
5+
### CocoaPods ###
6+
## CocoaPods GitIgnore Template
7+
8+
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
9+
# - Also handy if you have a large number of dependant pods
10+
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
11+
*/Pods/
12+
*/.Podfile.swp
13+
SeeMeet/Podfile.lock
14+
15+
16+
### macOS ###
17+
# General
18+
.DS_Store
19+
.AppleDouble
20+
.LSOverride
21+
22+
# Icon must end with two \r
23+
Icon
24+
25+
26+
# Thumbnails
27+
._*
28+
29+
# Files that might appear in the root of a volume
30+
.DocumentRevisions-V100
31+
.fseventsd
32+
.Spotlight-V100
33+
.TemporaryItems
34+
.Trashes
35+
.VolumeIcon.icns
36+
.com.apple.timemachine.donotpresent
37+
38+
# Directories potentially created on remote AFP share
39+
.AppleDB
40+
.AppleDesktop
41+
Network Trash Folder
42+
Temporary Items
43+
.apdisk
44+
45+
### Swift ###
46+
# Xcode
47+
#
48+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
49+
50+
## User settings
51+
xcuserdata/
52+
53+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
54+
*.xcscmblueprint
55+
*.xccheckout
56+
57+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
58+
build/
59+
DerivedData/
60+
*.moved-aside
61+
*.pbxuser
62+
!default.pbxuser
63+
*.mode1v3
64+
!default.mode1v3
65+
*.mode2v3
66+
!default.mode2v3
67+
*.perspectivev3
68+
!default.perspectivev3
69+
70+
## Obj-C/Swift specific
71+
*.hmap
72+
73+
## App packaging
74+
*.ipa
75+
*.dSYM.zip
76+
*.dSYM
77+
78+
## Playgrounds
79+
timeline.xctimeline
80+
playground.xcworkspace
81+
82+
# Swift Package Manager
83+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
84+
# Packages/
85+
# Package.pins
86+
# Package.resolved
87+
# *.xcodeproj
88+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
89+
# hence it is not needed unless you have added a package configuration file to your project
90+
# .swiftpm
91+
92+
.build/
93+
94+
# CocoaPods
95+
# We recommend against adding the Pods directory to your .gitignore. However
96+
# you should judge for yourself, the pros and cons are mentioned at:
97+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
98+
# Pods/
99+
# Add this line if you want to avoid checking in source code from the Xcode workspace
100+
# *.xcworkspace
101+
102+
# Carthage
103+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
104+
# Carthage/Checkouts
105+
106+
Carthage/Build/
107+
108+
# Accio dependency management
109+
Dependencies/
110+
.accio/
111+
112+
# fastlane
113+
# It is recommended to not store the screenshots in the git repo.
114+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
115+
# For more information about the recommended setup visit:
116+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
117+
118+
fastlane/report.xml
119+
fastlane/Preview.html
120+
fastlane/screenshots/**/*.png
121+
fastlane/test_output
122+
123+
# Code Injection
124+
# After new code Injection tools there's a generated folder /iOSInjectionProject
125+
# https://github.com/johnno1962/injectionforxcode
126+
127+
iOSInjectionProject/
128+
129+
### Xcode ###
130+
# Xcode
131+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
132+
133+
134+
135+
136+
## Gcc Patch
137+
/*.gcno
138+
139+
### Xcode Patch ###
140+
*.xcodeproj/*
141+
!*.xcodeproj/project.pbxproj
142+
!*.xcodeproj/xcshareddata/
143+
!*.xcworkspace/contents.xcworkspacedata
144+
**/xcshareddata/WorkspaceSettings.xcsettings
145+
146+
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode,cocoapods,macos

0 commit comments

Comments
 (0)