generated from Apodini/ApodiniTemplate
-
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.
Implementation of the Traced Services (#1)
Co-authored-by: Paul Schmiedmayer <PSchmiedmayer@users.noreply.github.com>
- Loading branch information
1 parent
8c2fd79
commit e0e6308
Showing
71 changed files
with
4,086 additions
and
752 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
This source file is part of the Apodini Template open source project | ||
This source file is part of the Apodini HotROD example open source project | ||
|
||
SPDX-FileCopyrightText: 2021 Paul Schmiedmayer and the project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de> | ||
SPDX-FileCopyrightText: 2022 Paul Schmiedmayer and the project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de> | ||
|
||
SPDX-License-Identifier: MIT |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,7 @@ | ||
|
||
This source file is part of the Apodini HotROD example open source project | ||
|
||
SPDX-FileCopyrightText: 2022 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de> | ||
|
||
SPDX-License-Identifier: MIT | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,7 @@ | ||
|
||
This source file is part of the Apodini HotROD example open source project | ||
|
||
SPDX-FileCopyrightText: 2022 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de> | ||
|
||
SPDX-License-Identifier: MIT | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,7 @@ | ||
|
||
This source file is part of the Apodini HotROD example open source project | ||
|
||
SPDX-FileCopyrightText: 2022 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de> | ||
|
||
SPDX-License-Identifier: MIT | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,28 @@ | ||
# | ||
# This source file is part of the Apodini open source project | ||
# | ||
# SPDX-FileCopyrightText: 2021 Paul Schmiedmayer and the project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de> | ||
# | ||
# SPDX-License-Identifier: MIT | ||
# | ||
|
||
name: Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_and_test: | ||
name: Build and Test | ||
uses: Apodini/.github/.github/workflows/build-and-test.yml@v1 | ||
with: | ||
packagename: ApodiniHotRODExample | ||
test: false | ||
docker-compose-test: | ||
name: Docker Compose Test | ||
uses: Apodini/.github/.github/workflows/docker-compose-test.yml@v1 | ||
with: | ||
testscript: test.sh |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,32 @@ | ||
# | ||
# This source file is part of the Apodini open source project | ||
# | ||
# SPDX-FileCopyrightText: 2021 Paul Schmiedmayer and the project authors (see CONTRIBUTORS.md) <paul.schmiedmayer@tum.de> | ||
# | ||
# SPDX-License-Identifier: MIT | ||
# | ||
|
||
name: Pull Request | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_and_test: | ||
name: Build and Test | ||
uses: Apodini/.github/.github/workflows/build-and-test.yml@v1 | ||
with: | ||
packagename: ApodiniHotRODExample | ||
test: false | ||
reuse_action: | ||
name: REUSE Compliance Check | ||
uses: Apodini/.github/.github/workflows/reuse.yml@v1 | ||
swiftlint: | ||
name: SwiftLint | ||
uses: Apodini/.github/.github/workflows/swiftlint.yml@v1 | ||
docker-compose-test: | ||
name: Docker Compose Test | ||
uses: Apodini/.github/.github/workflows/docker-compose-test.yml@v1 | ||
with: | ||
testscript: test.sh |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.