Skip to content

Commit 6a76a15

Browse files
Setup the CS342 Example Application (#1)
# Setup the CS342 Example Application ## ⚙️ Release Notes - Setup the CS342 Example Application ## 📝 Code of Conduct & Contributing Guidelines By submitting creating this pull request, you agree to follow our [Code of Conduct](https://github.com/CS342/.github/blob/main/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/CS342/.github/blob/main/CONTRIBUTING.md): - [x] I agree to follow the [Code of Conduct](https://github.com/CS342/.github/blob/main/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/CS342/.github/blob/main/CONTRIBUTING.md).
1 parent 1c7aadc commit 6a76a15

File tree

176 files changed

+388
-1393
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+388
-1393
lines changed

.firebaserc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"projects": {
3-
"default": "stanfordspezitemplateapp"
3+
"default": "cs342-2025-example-app"
44
}
55
}

.firebaserc.license

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This source file is part of the Stanford Spezi Template Application open-source project
1+
This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
22

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

.github/workflows/beta-deployment.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This source file is part of the Stanford Spezi Template Application open-source project
2+
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
33
#
4-
# SPDX-FileCopyrightText: 2023 Stanford University
4+
# SPDX-FileCopyrightText: 2025 Stanford University
55
#
66
# SPDX-License-Identifier: MIT
77
#
@@ -36,11 +36,11 @@ jobs:
3636
iosapptestflightdeployment:
3737
name: iOS App TestFlight Deployment
3838
needs: buildandtest
39-
uses: StanfordSpezi/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2
39+
uses: CS342/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2
4040
permissions:
4141
contents: read
4242
with:
43-
googleserviceinfoplistpath: 'TemplateApplication/Supporting Files/GoogleService-Info.plist'
43+
googleserviceinfoplistpath: 'CS342ExampleApplication/Supporting Files/GoogleService-Info.plist'
4444
setupsigning: true
4545
fastlanelane: beta
4646
secrets: inherit

.github/workflows/build-and-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This source file is part of the Stanford Spezi Template Application open-source project
2+
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
33
#
4-
# SPDX-FileCopyrightText: 2023 Stanford University
4+
# SPDX-FileCopyrightText: 2025 Stanford University
55
#
66
# SPDX-License-Identifier: MIT
77
#
@@ -20,11 +20,11 @@ concurrency:
2020
jobs:
2121
buildandtest:
2222
name: Build and Test
23-
uses: StanfordSpezi/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2
23+
uses: CS342/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2
2424
permissions:
2525
contents: read
2626
with:
27-
artifactname: TemplateApplication.xcresult
27+
artifactname: CS342ExampleApplication.xcresult
2828
runsonlabels: '["macOS", "self-hosted"]'
2929
setupfirebaseemulator: true
3030
customcommand: "firebase emulators:exec 'fastlane test'"
@@ -35,6 +35,6 @@ jobs:
3535
permissions:
3636
contents: read
3737
with:
38-
coveragereports: TemplateApplication.xcresult
38+
coveragereports: CS342ExampleApplication.xcresult
3939
secrets:
4040
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/documentation-deployment.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/monthly-markdown-link-check.yml.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This source file is part of the Stanford Spezi Template Application open-source project
2+
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
33
#
4-
# SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md)
4+
# SPDX-FileCopyrightText: 2025 Stanford University and the project authors (see CONTRIBUTORS.md)
55
#
66
# SPDX-License-Identifier: MIT
77
#

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
contents: read
3131
periphery:
3232
name: Periphery
33-
uses: StanfordSpezi/.github/.github/workflows/periphery.yml@v2
33+
uses: CS342/.github/.github/workflows/periphery.yml@v2
3434
permissions:
3535
contents: read
3636
with:

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This source file is part of the Stanford Spezi Template Application open-source project
2+
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
33
#
4-
# SPDX-FileCopyrightText: 2023 Stanford University
4+
# SPDX-FileCopyrightText: 2025 Stanford University
55
#
66
# SPDX-License-Identifier: MIT
77
#
@@ -12,7 +12,7 @@
1212
.derivedData
1313
.build
1414
.docs
15-
!TemplateApplication.xcodeproj
15+
!CS342ExampleApplication.xcodeproj
1616

1717
# IDE related folders
1818
.idea
@@ -30,7 +30,7 @@ xcuserdata/
3030
# Tests
3131
report.junit
3232
report.html
33-
TemplateApplication.xcresult
33+
CS342ExampleApplication.xcresult
3434

3535
# Logs
3636
logs
@@ -45,4 +45,4 @@ firebase-debug.*.log*
4545
.firebase/
4646

4747
# Swift Package List
48-
TemplateApplication/package-list.json
48+
CS342ExampleApplication/package-list.json

.periphery.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#
2-
# This source file is part of the Stanford Spezi Template Application open-source project
2+
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
33
#
4-
# SPDX-FileCopyrightText: 2023 Stanford University
4+
# SPDX-FileCopyrightText: 2025 Stanford University
55
#
66
# SPDX-License-Identifier: MIT
77
#
88

9-
project: TemplateApplication.xcodeproj
9+
project: CS342ExampleApplication.xcodeproj
1010
schemes:
11-
- TemplateApplication
11+
- CS342ExampleApplication
1212
targets:
13-
- TemplateApplication
14-
- TemplateApplicationTests
15-
- TemplateApplicationUITests
13+
- CS342ExampleApplication
14+
- CS342ExampleApplicationTests
15+
- CS342ExampleApplicationUITests

.reuse/dep5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
22

3-
Files: TemplateApplication.xcodeproj/*
3+
Files: CS342ExampleApplication.xcodeproj/*
44
Copyright: 2024 Stanford University and the project authors (see CONTRIBUTORS.md)
55
License: MIT
6-
Comment: All Xcode Project Configuration Files are part of the Stanford Spezi Template Application open-source project.
6+
Comment: All Xcode Project Configuration Files are part of the CS342 Example Application based on the Stanford Spezi Template Application project.

.swiftlint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This source file is part of the Stanford Spezi Template Application open-source project
2+
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
33
#
4-
# SPDX-FileCopyrightText: 2023 Stanford University
4+
# SPDX-FileCopyrightText: 2025 Stanford University
55
#
66
# SPDX-License-Identifier: MIT
77
#

CITATION.cff

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This source file is part of the Stanford Spezi Template Application open-source project
2+
# This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
33
#
4-
# SPDX-FileCopyrightText: 2023 Stanford University
4+
# SPDX-FileCopyrightText: 2025 Stanford University
55
#
66
# SPDX-License-Identifier: MIT
77
#
@@ -27,6 +27,4 @@ authors:
2727
- family-names: "Aalami"
2828
given-names: "Oliver"
2929
orcid: "https://orcid.org/0000-0002-7799-2429"
30-
title: "Spezi Template Application"
31-
doi: doi.org/10.5281/zenodo.7600783
32-
url: "https://github.com/StanfordSpezi/SpeziTemplateApplication"
30+
title: "CS342 Example Application"

CONTRIBUTORS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<!--
22
3-
This source file is part of the Stanford Spezi Template Application open-source project
3+
This source file is part of the CS342 Example Application based on the Stanford Spezi Template Application project
44
5-
SPDX-FileCopyrightText: 2023 Stanford University
5+
SPDX-FileCopyrightText: 2025 Stanford University
66
77
SPDX-License-Identifier: MIT
88
99
-->
1010

11-
Template Application Contributors
11+
CS342 Example Application Contributors
1212
=================================
1313

1414
* [Paul Schmiedmayer](https://github.com/PSchmiedmayer)

0 commit comments

Comments
 (0)