-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/#4-network-hyerjang
- Loading branch information
Showing
10 changed files
with
124 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: "\U0001F3C4\U0001F3FE Feature Template" | ||
about: "Feature 개발 시 생성해주세요. \U0001F64F\U0001F3FB" | ||
title: "[Feature] 기능 이름" | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 어떤 기능인가요? | ||
> 기능을 설명해주세요. | ||
## 작업 내용 | ||
- [ ] TO-DO | ||
- [ ] TO-DO | ||
- [ ] TO-DO | ||
|
||
## 참고할만한 사항(Optional) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: "\U0001F41B Bug Report Template" | ||
about: "Bug 발견 시에 작성해 주세요. \U0001F423" | ||
title: "[BUG] 버그 내용(간단하게!)" | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 어떤 버그인가요? | ||
> 어떤 버그인지 간단하게 설명해주세요. | ||
## 어떻게 재현할 수 있나요? | ||
> 가능한 구체적으로 적어주세요.(사진도 좋아요!) | ||
## 기대 결과 | ||
> 기존에 원하던 결과는 무엇인가요? (사진도 좋아요!) | ||
## 참고할만한 사항(Optional) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,7 @@ storage_mode("git") | |
|
||
type("development") # The default type, can be: appstore, adhoc, enterprise or development | ||
|
||
# app_identifier(["tools.fastlane.app", "tools.fastlane.app2"]) | ||
# username("[email protected]") # Your Apple Developer Portal username | ||
app_identifier(["ppac.farmeme.App"]) | ||
|
||
# For all available options run `fastlane match --help` | ||
# Remove the # in the beginning of the line to enable the other options | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// Project.swift | ||
// PPACUtil | ||
// | ||
// Created by kimchansoo on 2024/06/09 | ||
// | ||
|
||
import ProjectDescription | ||
import ProjectDescriptionHelpers | ||
|
||
let project = Project( | ||
name: "PPACUtil", | ||
targets: [ | ||
.configure( | ||
name: "PPACUtil", | ||
product: .framework, | ||
infoPlist: .default, | ||
sources: "Sources/**", | ||
resources: "Resources/**", | ||
dependencies: [ | ||
|
||
] | ||
) | ||
] | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
더미임미다 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
더미임미다 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/zsh | ||
|
||
set -e | ||
|
||
# mise 설치 | ||
curl https://mise.run | sh | ||
|
||
# 환경설정 추가 | ||
echo 'eval "$(~/.local/bin/mise activate zsh)"' >> ~/.zshrc | ||
echo 'export PATH="$HOME/.local/share/mise/shims:$PATH"' >> ~/.zprofile | ||
|
||
# zsh 다시 시작 | ||
exec zsh | ||
|
||
# 필요한 도구 설치 | ||
arch -arm64 brew install pipenv fastlane | ||
|
||
# fastlane 설정 | ||
fastlane match development --readonly | ||
fastlane match appstore --readonly | ||
|
||
# mise, tuist 설치 | ||
mise install | ||
tuist install | ||
|
||
# tuist generate 실행 | ||
tuist generate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters