Skip to content

Commit

Permalink
Merge pull request #83 from Team-HMH/set/#78
Browse files Browse the repository at this point in the history
Set [#78] Tuist 기반 Clean Architecture Project 세팅(2)
  • Loading branch information
HELLOHIDI authored Aug 12, 2024
2 parents e0c0fc5 + 16f3fc9 commit 9192017
Show file tree
Hide file tree
Showing 168 changed files with 6,297 additions and 501 deletions.
89 changes: 74 additions & 15 deletions HMH_Tuist_iOS/.gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# Created by https://www.toptal.com/developers/gitignore/api/macos,swift,swiftpackagemanager
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,swift,swiftpackagemanager

*.xcconfig

### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two
# Icon must end with two \r
Icon


# Thumbnails
._*

Expand All @@ -26,7 +32,11 @@ Network Trash Folder
Temporary Items
.apdisk

### Xcode ###
### macOS Patch ###
# iCloud generated files
*.icloud

### Swift ###
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
Expand All @@ -51,20 +61,69 @@ DerivedData/
*.perspectivev3
!default.perspectivev3

### Xcode Patch ###
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata
/*.gcno
## Obj-C/Swift specific
*.hmap

## App packaging
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
# Package.resolved
# *.xcodeproj
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
# hence it is not needed unless you have added a package configuration file to your project
# .swiftpm

.build/

# CocoaPods
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
# Pods/
# Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace

# Carthage
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build/

# Accio dependency management
Dependencies/
.accio/

# fastlane
# It is recommended to not store the screenshots in the git repo.
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output

# Code Injection
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/

### Projects ###
### SwiftPackageManager ###
Packages
xcuserdata
*.xcodeproj
*.xcworkspace

### Tuist derived files ###
graph.dot
Derived/

### Tuist managed dependencies ###
Tuist/Dependencies
# End of https://www.toptal.com/developers/gitignore/api/macos,swift,swiftpackagemanager
109 changes: 109 additions & 0 deletions HMH_Tuist_iOS/HMH-Tuist-iOS.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded</key>
<false/>
</dict>
</plist>
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"originHash" : "570a44d70ad213b218bf7f5ebda4b1039c8fcc9f31854902e91f484af1d6cfc3",
"pins" : [
{
"identity" : "difference",
"kind" : "remoteSourceControl",
"location" : "https://github.com/krzysztofzablocki/Difference",
"state" : {
"revision" : "f627d00718033c3d7888acd5f4e3524a843db1cf",
"version" : "1.0.2"
}
},
{
"identity" : "swift-snapshot-testing",
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/swift-snapshot-testing.git",
"state" : {
"revision" : "0c2826f26d00ff5ddf2de92cb6b2139b0dd3d1ee"
}
}
],
"version" : 3
}
Loading

0 comments on commit 9192017

Please sign in to comment.