Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .hermes/skills/devlog-architecture-harness/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: devlog-architecture-harness
description: Use before architecture, modularization, dependency-boundary, DI, repository, Firebase-boundary, or widget-data-flow work in the SwiftUI_DevLog repository.
description: Use before architecture, modularization, dependency-boundary, DI, repository, Firebase-boundary, or widget-data-flow work in the DevLog_iOS repository.
version: 1.0.0
metadata:
hermes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ final class LocalFirebaseRESTSupport {
func fetchPushNotificationIDs(userId: String) async throws -> [String] {
let googleServiceInfo = try loadGoogleServiceInfo()
let url = firestoreBaseURL.appending(
path: "v1/projects/\(googleServiceInfo.projectId)/databases/(default)/documents/users/\(userId)/notifications",
path: "v1/projects/\(googleServiceInfo.projectId)/databases/(default)/documents/users/" +
"\(userId)/notifications",
directoryHint: .notDirectory
)
let (data, response) = try await URLSession.shared.data(from: url)
Expand Down Expand Up @@ -242,7 +243,7 @@ private extension LocalFirebaseRESTSupport {
func loadGoogleServiceInfo() throws -> GoogleServiceInfo {
var fileURL = URL(fileURLWithPath: #filePath)

while fileURL.lastPathComponent != "SwiftUI_DevLog" {
while fileURL.lastPathComponent != "DevLog_iOS" {
Comment thread
opficdev marked this conversation as resolved.
let nextURL = fileURL.deletingLastPathComponent()
if nextURL == fileURL {
throw RESTError.missingConfiguration
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ mise exec -- tuist generate --no-open
## 프로젝트 구조

```text
SwiftUI_DevLog/
DevLog_iOS/
├── Tuist.swift
├── Workspace.swift
├── .mise.toml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 목표

기존 `SwiftUI_DevLog`의 모듈 경계와 의존성 방향을 유지한 채, 수동 관리 중인 Xcode 프로젝트/워크스페이스를 Tuist 기반 생성 구조로 전환한다.
기존 `DevLog_iOS`의 모듈 경계와 의존성 방향을 유지한 채, 수동 관리 중인 Xcode 프로젝트/워크스페이스를 Tuist 기반 생성 구조로 전환한다.

## 버전 선택

Expand Down
Loading