Skip to content

Setup the CS342 Example Application #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 24, 2025
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 .firebaserc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"projects": {
"default": "stanfordspezitemplateapp"
"default": "cs342-2025-example-app"
}
}
2 changes: 1 addition & 1 deletion .firebaserc.license
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This source file is part of the Stanford Spezi Template Application open-source project
This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project

SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md)

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/beta-deployment.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This source file is part of the Stanford Spezi Template Application open-source project
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
#
# SPDX-FileCopyrightText: 2023 Stanford University
# SPDX-FileCopyrightText: 2025 Stanford University
#
# SPDX-License-Identifier: MIT
#
Expand Down Expand Up @@ -36,11 +36,11 @@ jobs:
iosapptestflightdeployment:
name: iOS App TestFlight Deployment
needs: buildandtest
uses: StanfordSpezi/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2
uses: CS342/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2
permissions:
contents: read
with:
googleserviceinfoplistpath: 'TemplateApplication/Supporting Files/GoogleService-Info.plist'
googleserviceinfoplistpath: 'CS342ExampleApplication/Supporting Files/GoogleService-Info.plist'
setupsigning: true
fastlanelane: beta
secrets: inherit
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This source file is part of the Stanford Spezi Template Application open-source project
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
#
# SPDX-FileCopyrightText: 2023 Stanford University
# SPDX-FileCopyrightText: 2025 Stanford University
#
# SPDX-License-Identifier: MIT
#
Expand All @@ -20,11 +20,11 @@ concurrency:
jobs:
buildandtest:
name: Build and Test
uses: StanfordSpezi/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2
uses: CS342/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2
permissions:
contents: read
with:
artifactname: TemplateApplication.xcresult
artifactname: CS342ExampleApplication.xcresult
runsonlabels: '["macOS", "self-hosted"]'
setupfirebaseemulator: true
customcommand: "firebase emulators:exec 'fastlane test'"
Expand All @@ -35,6 +35,6 @@ jobs:
permissions:
contents: read
with:
coveragereports: TemplateApplication.xcresult
coveragereports: CS342ExampleApplication.xcresult
secrets:
token: ${{ secrets.CODECOV_TOKEN }}
33 changes: 0 additions & 33 deletions .github/workflows/documentation-deployment.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/monthly-markdown-link-check.yml.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This source file is part of the Stanford Spezi Template Application open-source project
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
#
# SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md)
# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see CONTRIBUTORS.md)
#
# SPDX-License-Identifier: MIT
#
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
contents: read
periphery:
name: Periphery
uses: StanfordSpezi/.github/.github/workflows/periphery.yml@v2
uses: CS342/.github/.github/workflows/periphery.yml@v2
permissions:
contents: read
with:
Expand Down
10 changes: 5 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This source file is part of the Stanford Spezi Template Application open-source project
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
#
# SPDX-FileCopyrightText: 2023 Stanford University
# SPDX-FileCopyrightText: 2025 Stanford University
#
# SPDX-License-Identifier: MIT
#
Expand All @@ -12,7 +12,7 @@
.derivedData
.build
.docs
!TemplateApplication.xcodeproj
!CS342ExampleApplication.xcodeproj

# IDE related folders
.idea
Expand All @@ -30,7 +30,7 @@ xcuserdata/
# Tests
report.junit
report.html
TemplateApplication.xcresult
CS342ExampleApplication.xcresult

# Logs
logs
Expand All @@ -45,4 +45,4 @@ firebase-debug.*.log*
.firebase/

# Swift Package List
TemplateApplication/package-list.json
CS342ExampleApplication/package-list.json
14 changes: 7 additions & 7 deletions .periphery.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#
# This source file is part of the Stanford Spezi Template Application open-source project
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
#
# SPDX-FileCopyrightText: 2023 Stanford University
# SPDX-FileCopyrightText: 2025 Stanford University
#
# SPDX-License-Identifier: MIT
#

project: TemplateApplication.xcodeproj
project: CS342ExampleApplication.xcodeproj
schemes:
- TemplateApplication
- CS342ExampleApplication
targets:
- TemplateApplication
- TemplateApplicationTests
- TemplateApplicationUITests
- CS342ExampleApplication
- CS342ExampleApplicationTests
- CS342ExampleApplicationUITests
4 changes: 2 additions & 2 deletions .reuse/dep5
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/

Files: TemplateApplication.xcodeproj/*
Files: CS342ExampleApplication.xcodeproj/*
Copyright: 2024 Stanford University and the project authors (see CONTRIBUTORS.md)
License: MIT
Comment: All Xcode Project Configuration Files are part of the Stanford Spezi Template Application open-source project.
Comment: All Xcode Project Configuration Files are part of the CS342 Example Application based on the Stanford Spezi Template Application project.
4 changes: 2 additions & 2 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This source file is part of the Stanford Spezi Template Application open-source project
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
#
# SPDX-FileCopyrightText: 2023 Stanford University
# SPDX-FileCopyrightText: 2025 Stanford University
#
# SPDX-License-Identifier: MIT
#
Expand Down
8 changes: 3 additions & 5 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This source file is part of the Stanford Spezi Template Application open-source project
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
#
# SPDX-FileCopyrightText: 2023 Stanford University
# SPDX-FileCopyrightText: 2025 Stanford University
#
# SPDX-License-Identifier: MIT
#
Expand All @@ -27,6 +27,4 @@ authors:
- family-names: "Aalami"
given-names: "Oliver"
orcid: "https://orcid.org/0000-0002-7799-2429"
title: "Spezi Template Application"
doi: doi.org/10.5281/zenodo.7600783
url: "https://github.com/StanfordSpezi/SpeziTemplateApplication"
title: "CS342 Example Application"
6 changes: 3 additions & 3 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<!--

This source file is part of the Stanford Spezi Template Application open-source project
This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project

SPDX-FileCopyrightText: 2023 Stanford University
SPDX-FileCopyrightText: 2025 Stanford University

SPDX-License-Identifier: MIT

-->

Template Application Contributors
CS342 Example Application Contributors
=================================

* [Paul Schmiedmayer](https://github.com/PSchmiedmayer)
Expand Down
Loading
Loading