Skip to content

Commit c267587

Browse files
committed
Merge branch 'release/0.1.1'
2 parents 7590cb9 + d8788a5 commit c267587

File tree

474 files changed

+17816
-1
lines changed

Some content is hidden

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

474 files changed

+17816
-1
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## [#100] FEAT : 로그인 구현
2+
3+
## 관련된 문서 📄
4+
5+
## 무엇에 관한 PR 인가요? 🙋
6+
7+
## 어떤 것을 작업하셨나요? 🛠
8+
- 작업1
9+
- 작업2
10+
11+
## 🌱 PR Point
12+
- PR Point 1
13+
- PR Point 2

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
workflow_dispatch:
6+
7+
jobs:
8+
lint:
9+
name: Run Swiftlint
10+
runs-on: macos-14
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Run Swiftlint
14+
run: |
15+
SwiftLint/swiftlint lint --config SwiftLint/swiftlint.yml --quiet --reporter github-actions-logging

.gitignore

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Created by https://www.gitignore.io/api/swift,macos
2+
3+
### macOS ###
4+
*.DS_Store
5+
.AppleDouble
6+
.LSOverride
7+
8+
# Files that might appear in the root of a volume
9+
.DocumentRevisions-V100
10+
.fseventsd
11+
.Spotlight-V100
12+
.TemporaryItems
13+
.Trashes
14+
.VolumeIcon.icns
15+
.com.apple.timemachine.donotpresent
16+
17+
# Directories potentially created on remote AFP share
18+
.AppleDB
19+
.AppleDesktop
20+
Network Trash Folder
21+
Temporary Items
22+
.apdisk
23+
24+
### Swift ###
25+
# Xcode
26+
27+
## Build generated
28+
DerivedData/
29+
30+
## Various settings
31+
*.pbxuser
32+
!default.pbxuser
33+
*.mode1v3
34+
!default.mode1v3
35+
*.mode2v3
36+
!default.mode2v3
37+
*.perspectivev3
38+
!default.perspectivev3
39+
xcuserdata/
40+
41+
## Other
42+
*.moved-aside
43+
*.xccheckout
44+
*.xcscmblueprint
45+
46+
## Obj-C/Swift specific
47+
*.hmap
48+
*.ipa
49+
50+
## Playgrounds
51+
timeline.xctimeline
52+
playground.xcworkspace
53+
54+
# Swift Package Manager
55+
.build/
56+
.swiftpm
57+
58+
# End of https://www.gitignore.io/api/swift,macos
59+
60+
## Projects ##
61+
**/*.xcodeproj
62+
**/*.xcworkspace
63+
64+
## LicensePlist ##
65+
**/Settings.bundle/License
66+
**/Settings.bundle/License.plist
67+
68+
## Tuist ##
69+
graph.dot
70+
Derived/
71+
Tuist/Dependencies/SwiftPackageManager
72+
Tuist/Dependencies/graph.json
73+
74+
## XCFramework ##
75+
XCFramework/Cartfile.resolved
76+
XCFramework/Carthage

.mise.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[tools]
2+
tuist = "4.21.1"

DependencyGraph/graphMaker.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
TUIST_BUILD_CONFIG=prod tuist graph Mohanyang -d -t -f dot
2+
sed -i '' '/ThirdParty_/d' graph.dot
3+
dot -Tpng graph.dot -o DependencyGraph/mohanyang_prod_graph.png
4+
rm graph.dot
5+
6+
TUIST_BUILD_CONFIG=dev tuist graph -d -f dot
7+
sed -i '' '/ThirdParty_/d' graph.dot
8+
dot -Tpng graph.dot -o DependencyGraph/mohanyang_dev_graph.png
9+
rm graph.dot
10+
11+
open DependencyGraph/mohanyang_dev_graph.png
12+
open DependencyGraph/mohanyang_prod_graph.png
454 KB
Loading
324 KB
Loading
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
//___FILEHEADER___
2+
3+
import ComposableArchitecture
4+
5+
@Reducer
6+
struct ___VARIABLE_productName___Core {
7+
@ObservableState
8+
struct State: Equatable {
9+
<#properties#>
10+
}
11+
12+
enum Action {
13+
<#case#>
14+
}
15+
16+
<#@Dependency() var#>
17+
18+
init() {}
19+
20+
var body: some ReducerOf<Self> {
21+
Reduce(self.core)
22+
}
23+
24+
private func core(state: inout State, action: Action) -> EffectOf<Self> {
25+
switch action {
26+
case <#pattern#>:
27+
<#code#>
28+
}
29+
}
30+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//___FILEHEADER___
2+
3+
import SwiftUI
4+
5+
import DesignSystem
6+
7+
import ComposableArchitecture
8+
9+
struct ___FILEBASENAME___: View {
10+
@Bindable var store: StoreOf<___VARIABLE_productName___Core>
11+
12+
init(store: StoreOf<___VARIABLE_productName___Core>) {
13+
self.store = store
14+
}
15+
16+
var body: some View {
17+
<#code#>
18+
}
19+
}
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
//___FILEHEADER___
2+
3+
import ComposableArchitecture
4+
5+
@Reducer
6+
public struct ___VARIABLE_productName___Core {
7+
@ObservableState
8+
public struct State: Equatable {
9+
<#properties#>
10+
}
11+
12+
public enum Action {
13+
<#case#>
14+
}
15+
16+
<#@Dependency() var#>
17+
18+
public init() {}
19+
20+
public var body: some ReducerOf<Self> {
21+
Reduce(self.core)
22+
}
23+
24+
private func core(state: inout State, action: Action) -> EffectOf<Self> {
25+
switch action {
26+
case <#pattern#>:
27+
<#code#>
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)