Skip to content
Open
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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,9 @@ dist/
*.ipa
*.dSYM.zip
*.dSYM

## local-only spec override
project.local.yml

## SwiftPM local build artifacts
Packages/*/.build/
8 changes: 8 additions & 0 deletions .mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"xcode": {
"command": "xcrun",
"args": ["mcpbridge"]
}
}
}
17 changes: 17 additions & 0 deletions Apps/Phone/NightcapPhoneApp.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import ComposableArchitecture
import NightcapCompanionUI
import NightcapDomain
import SwiftUI

@main
struct NightcapPhoneApp: App {
@State private var store = Store(initialState: CompanionFeature.State()) {
CompanionFeature()
}

var body: some Scene {
WindowGroup {
CompanionView(store: store)
}
}
}
17 changes: 17 additions & 0 deletions Apps/Watch/NightcapWatchApp.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import ComposableArchitecture
import NightcapCompanionUI
import NightcapDomain
import SwiftUI

@main
struct NightcapWatchApp: App {
@State private var store = Store(initialState: CompanionFeature.State()) {
CompanionFeature()
}

var body: some Scene {
WindowGroup {
CompanionView(store: store)
}
}
}
3 changes: 3 additions & 0 deletions Nightcap/NightcapApp.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import ComposableArchitecture
import NightcapClients
import NightcapDomain
import NightcapUI
import SwiftUI

@main
Expand Down
27 changes: 0 additions & 27 deletions Nightcap/Services/AppQuitterClient.swift

This file was deleted.

29 changes: 0 additions & 29 deletions Nightcap/Services/LaunchAtLoginClient.swift

This file was deleted.

Loading