forked from eclipse-edc/DataDashboard
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
378fba9
commit b55c2b6
Showing
167 changed files
with
31,519 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below. | ||
# For additional information regarding the format and rule options, please see: | ||
# https://github.com/browserslist/browserslist#queries | ||
|
||
# For the full list of supported browsers by the Angular framework, please see: | ||
# https://angular.io/guide/browser-support | ||
|
||
# You can see what browsers were selected by your queries by running: | ||
# npx browserslist | ||
|
||
last 1 Chrome version | ||
last 1 Firefox version | ||
last 2 Edge major versions | ||
last 2 Safari major versions | ||
last 2 iOS major versions | ||
Firefox ESR | ||
not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line. |
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,6 @@ | ||
.idea | ||
.vscode | ||
misc | ||
openapi | ||
tmp | ||
node_modules |
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,16 @@ | ||
# Editor configuration, see https://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.ts] | ||
quote_type = single | ||
|
||
[*.md] | ||
max_line_length = off | ||
trim_trailing_whitespace = false |
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,26 @@ | ||
## What this PR changes/adds | ||
|
||
_Briefly describe WHAT your pr changes, which features it adds/modifies._ | ||
|
||
## Why it does that | ||
|
||
_Briefly state why the change was necessary._ | ||
|
||
## Further notes | ||
|
||
_List other areas of code that have changed but are not necessarily linked to the main feature. This could be method | ||
signature changes, package declarations, bugs that were encountered and were fixed inline, etc._ | ||
|
||
## Linked Issue(s) | ||
|
||
Closes # <-- _insert Issue number if one exists_ | ||
|
||
## Checklist | ||
|
||
- [ ] added appropriate tests? | ||
- [ ] performed checkstyle check locally? | ||
- [ ] added/updated copyright headers? | ||
- [ ] documented public classes/methods? | ||
- [ ] added/updated relevant documentation? | ||
- [ ] added relevant details to the changelog? (_skip with label `no-changelog`_) | ||
- [ ] formatted title correctly? (_take a look at the [CONTRIBUTING](https://github.com/eclipse-dataspaceconnector/datadashboard/blob/main/CONTRIBUTING.md#submit-a-pull-request) and [styleguide](https://github.com/eclipse-dataspaceconnector/datadashboard/blob/main/styleguide.md) for details_) |
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,36 @@ | ||
name: CD | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
# Grant permissions to obtain federated identity credentials | ||
# see https://docs.github.com/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure | ||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
jobs: | ||
|
||
# Build runtime image in Azure Container Registry, tagged with the commit ID. | ||
Build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checkout code | ||
- uses: actions/checkout@v2 | ||
|
||
# Build Docker runtime image | ||
- name: 'Build image' | ||
run: docker build -t data-dashboard . | ||
|
||
# Run Docker container | ||
- name: 'Run container' | ||
run: docker run -p 8080:80 -d --rm --name data-dashboard data-dashboard | ||
|
||
# Verify docker image | ||
- name: 'Verify container' | ||
run: | | ||
curl -O https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh | ||
chmod +x wait-for-it.sh | ||
./wait-for-it.sh -t 20 localhost:8080 |
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,48 @@ | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# compiled output | ||
/dist | ||
/tmp | ||
/out-tsc | ||
# Only exists if Bazel was run | ||
/bazel-out | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
# profiling files | ||
chrome-profiler-events*.json | ||
|
||
# IDEs and editors | ||
/.idea | ||
.project | ||
.classpath | ||
.c9/ | ||
*.launch | ||
.settings/ | ||
*.sublime-workspace | ||
|
||
# IDE - VSCode | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
.history/* | ||
|
||
# misc | ||
/.sass-cache | ||
/connect.lock | ||
/coverage | ||
/libpeerconnection.log | ||
npm-debug.log | ||
yarn-error.log | ||
testem.log | ||
/typings | ||
|
||
# System Files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
.terraform* | ||
.angular/ |
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,22 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file - formatted and maintained according to the rules | ||
documented on <http://keepachangelog.com>. | ||
|
||
This file will not cover changes about documentation, code clean-up, samples, or the CI pipeline. With each version | ||
(respectively milestone), the core features are highlighted. Relevant changes to existing implementations can be found | ||
in the detailed section referring to by linking pull requests or issues. | ||
|
||
## [Unreleased] | ||
|
||
### Overview | ||
|
||
### Detailed Changes | ||
|
||
#### Added | ||
|
||
#### Changed | ||
|
||
#### Removed | ||
|
||
#### Fixed |
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,18 @@ | ||
# This file provides an overview of responsibilities in this repository. | ||
|
||
# Please note that this file does not represent all contributions to the code. What persons and organizations | ||
# actually contributed to each file can be seen on GitHub and is documented in the license headers. | ||
|
||
# Each line is a file pattern followed by one or more contact persons. The last matching pattern has the most precedence. | ||
# For more details, read the following article on GitHub: https://help.github.com/articles/about-codeowners/. | ||
|
||
# The linked persons are automatically added as reviewers when a pull request is opened. | ||
|
||
CONTRIBUTING.md @paullatzelsperger | ||
LICENSE @paullatzelsperger | ||
pr_etiquette.md @paullatzelsperger | ||
styleguide.md @paullatzelsperger | ||
|
||
.github/actions/ @paullatzelsperger | ||
.github/ISSUE_TEMPLATE @paullatzelsperger | ||
.github/workflows/ @paullatzelsperger |
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,9 @@ | ||
# Microsoft Open Source Code of Conduct | ||
|
||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). | ||
|
||
Resources: | ||
|
||
- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/) | ||
- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) | ||
- Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns |
Oops, something went wrong.