Skip to content

Commit 34f0b35

Browse files
authored
[Merge] feat#1-multi-module-and-git
[Feat#1] multi module and git
2 parents 278f920 + 6adb9da commit 34f0b35

88 files changed

Lines changed: 1805 additions & 105 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: issue_template
3+
about: 이슈 전용 탬플릿 입니다
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
## ISSUE
11+
- 이슈에 대한 설명
12+
13+
## ❗ TO DO
14+
- [ ] 해야 할 일에 대한 설명

.github/auto_assign.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
addAssignees: author
2+
3+
addReviewers: true
4+
5+
reviewers:
6+
- sonms

.github/pull_request_template.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## ISSUE
2+
- closed #이슈번호
3+
4+
## ❗ WORK DESCRIPTION
5+
- PR에 대한 설명
6+
7+
## Uncompleted Tasks 😅
8+
- [ ]
9+
10+
## 📸 SCREENSHOT
11+
<img src="" width="300" />
12+
<!-- video src="" witdh="300"/>-->
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: "Auto Assign and Reviewers"
2+
on:
3+
pull_request:
4+
types: [opened, ready_for_review]
5+
6+
jobs:
7+
add-reviewers-and-assignees:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Assign author and add reviewers
11+
uses: kentaro-m/auto-assign-action@v2.0.0
12+
with:
13+
configuration-path: '.github/auto_assign.yml'

.gitignore

Lines changed: 246 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,249 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/android,androidstudio,macos,windows,linux
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=android,androidstudio,macos,windows,linux
3+
4+
### Android ###
5+
# Gradle files
6+
.gradle/
7+
build/
8+
9+
# Local configuration file (sdk path, etc)
10+
local.properties
11+
12+
# Log/OS Files
13+
*.log
14+
15+
# Android Studio generated files and folders
16+
captures/
17+
.externalNativeBuild/
18+
.cxx/
19+
*.apk
20+
output.json
21+
22+
# IntelliJ
123
*.iml
2-
.gradle
3-
/local.properties
4-
/.idea/caches
5-
/.idea/libraries
6-
/.idea/modules.xml
7-
/.idea/workspace.xml
8-
/.idea/navEditor.xml
9-
/.idea/assetWizardSettings.xml
24+
.idea/*
25+
!.idea/codeInsightSettings.xml
26+
!.idea/icon.svg
27+
misc.xml
28+
deploymentTargetDropDown.xml
29+
render.experimental.xml
30+
31+
# Keystore files
32+
*.jks
33+
*.keystore
34+
35+
# Google Services (e.g. APIs or Firebase)
36+
google-services.json
37+
38+
# Android Profiling
39+
*.hprof
40+
41+
### Android Patch ###
42+
gen-external-apklibs
43+
44+
# Replacement of .externalNativeBuild directories introduced
45+
# with Android Studio 3.5.
46+
47+
### Linux ###
48+
*~
49+
50+
# temporary files which can be created if a process still has a handle open of a deleted file
51+
.fuse_hidden*
52+
53+
# KDE directory preferences
54+
.directory
55+
56+
# Linux trash folder which might appear on any partition or disk
57+
.Trash-*
58+
59+
# .nfs files are created when an open file is removed but is still being accessed
60+
.nfs*
61+
62+
### macOS ###
63+
# General
1064
.DS_Store
11-
/build
12-
/captures
65+
.AppleDouble
66+
.LSOverride
67+
68+
# Icon must end with two \r
69+
Icon
70+
71+
72+
# Thumbnails
73+
._*
74+
75+
# Files that might appear in the root of a volume
76+
.DocumentRevisions-V100
77+
.fseventsd
78+
.Spotlight-V100
79+
.TemporaryItems
80+
.Trashes
81+
.VolumeIcon.icns
82+
.com.apple.timemachine.donotpresent
83+
84+
# Directories potentially created on remote AFP share
85+
.AppleDB
86+
.AppleDesktop
87+
Network Trash Folder
88+
Temporary Items
89+
.apdisk
90+
91+
### macOS Patch ###
92+
# iCloud generated files
93+
*.icloud
94+
95+
### Windows ###
96+
# Windows thumbnail cache files
97+
Thumbs.db
98+
Thumbs.db:encryptable
99+
ehthumbs.db
100+
ehthumbs_vista.db
101+
102+
# Dump file
103+
*.stackdump
104+
105+
# Folder config file
106+
[Dd]esktop.ini
107+
108+
# Recycle Bin used on file shares
109+
$RECYCLE.BIN/
110+
111+
# Windows Installer files
112+
*.cab
113+
*.msi
114+
*.msix
115+
*.msm
116+
*.msp
117+
118+
# Windows shortcuts
119+
*.lnk
120+
121+
### AndroidStudio ###
122+
# Covers files to be ignored for android development using Android Studio.
123+
124+
# Built application files
125+
*.ap_
126+
*.aab
127+
128+
# Files for the ART/Dalvik VM
129+
*.dex
130+
131+
# Java class files
132+
*.class
133+
134+
# Generated files
135+
bin/
136+
gen/
137+
out/
138+
139+
# Gradle files
140+
.gradle
141+
142+
# Signing files
143+
.signing/
144+
145+
# Local configuration file (sdk path, etc)
146+
147+
# Proguard folder generated by Eclipse
148+
proguard/
149+
150+
# Log Files
151+
152+
# Android Studio
153+
/*/build/
154+
/*/local.properties
155+
/*/out
156+
/*/*/build
157+
/*/*/production
158+
.navigation/
159+
*.ipr
160+
*.swp
161+
162+
# Keystores files
163+
164+
# Google Services (e.g. APIs or Firebase)
165+
# google-services.json
166+
167+
# Android Patch
168+
169+
# External native build folder generated in Android Studio 2.2 and later
13170
.externalNativeBuild
14-
.cxx
15-
local.properties
171+
172+
# NDK
173+
obj/
174+
175+
# IntelliJ IDEA
176+
*.iws
177+
/out/
178+
179+
# User-specific configurations
180+
.idea/caches/
181+
.idea/libraries/
182+
.idea/shelf/
183+
.idea/workspace.xml
184+
.idea/tasks.xml
185+
.idea/.name
186+
.idea/compiler.xml
187+
.idea/copyright/profiles_settings.xml
188+
.idea/encodings.xml
189+
.idea/misc.xml
190+
.idea/modules.xml
191+
.idea/scopes/scope_settings.xml
192+
.idea/dictionaries
193+
.idea/vcs.xml
194+
.idea/jsLibraryMappings.xml
195+
.idea/datasources.xml
196+
.idea/dataSources.ids
197+
.idea/sqlDataSources.xml
198+
.idea/dynamic.xml
199+
.idea/uiDesigner.xml
200+
.idea/assetWizardSettings.xml
201+
.idea/gradle.xml
202+
.idea/jarRepositories.xml
203+
.idea/navEditor.xml
204+
205+
# Legacy Eclipse project files
206+
.classpath
207+
.project
208+
.cproject
209+
.settings/
210+
211+
# Mobile Tools for Java (J2ME)
212+
.mtj.tmp/
213+
214+
# Package Files #
215+
*.war
216+
*.ear
217+
218+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
219+
hs_err_pid*
220+
221+
## Plugin-specific files:
222+
223+
# mpeltonen/sbt-idea plugin
224+
.idea_modules/
225+
226+
# JIRA plugin
227+
atlassian-ide-plugin.xml
228+
229+
# Mongo Explorer plugin
230+
.idea/mongoSettings.xml
231+
232+
# Crashlytics plugin (for Android Studio and IntelliJ)
233+
com_crashlytics_export_strings.xml
234+
crashlytics.properties
235+
crashlytics-build.properties
236+
fabric.properties
237+
238+
### AndroidStudio Patch ###
239+
240+
!/gradle/wrapper/gradle-wrapper.jar
241+
242+
# End of https://www.toptal.com/developers/gitignore/api/android,androidstudio,macos,windows,linux
243+
244+
# Fastlane dependencies
245+
vendor/
246+
247+
### Claude ###
248+
# Claude Code
249+
CLAUDE.md

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)