Skip to content

Commit a6dec4c

Browse files
committed
initial commit
0 parents  commit a6dec4c

File tree

88 files changed

+23541
-0
lines changed

Some content is hidden

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

88 files changed

+23541
-0
lines changed

.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
**/**/node_modules
2+
**/**/*.env
3+
.angular

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
14+
[*.md]
15+
max_line_length = off
16+
trim_trailing_whitespace = false

.github/img/access_token.png

54.2 KB
Loading
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: docker-publish
2+
'on':
3+
push:
4+
tags:
5+
- '*.*.*'
6+
7+
jobs:
8+
build_and_publish:
9+
runs-on: ubuntu-latest
10+
steps:
11+
-
12+
name: Set up QEMU
13+
uses: docker/setup-qemu-action@v2
14+
-
15+
name: Set up Docker Buildx
16+
uses: docker/setup-buildx-action@v2
17+
-
18+
name: Login to Docker Hub
19+
uses: docker/login-action@v2
20+
with:
21+
username: ${{ secrets.DOCKERHUB_USERNAME }}
22+
password: ${{ secrets.DOCKERHUB_TOKEN }}
23+
-
24+
name: Build and push
25+
uses: docker/build-push-action@v3
26+
with:
27+
push: true
28+
tags: larscom/gitlab-ci-dashboard:latest,larscom/gitlab-ci-dashboard:${{ github.ref_name }}
29+
-
30+
name: Update description
31+
uses: peter-evans/dockerhub-description@v2
32+
with:
33+
username: ${{ secrets.DOCKERHUB_USERNAME }}
34+
password: ${{ secrets.DOCKERHUB_PASSWORD }}
35+
repository: larscom/gitlab-ci-dashboard
36+
short-description: ${{ github.event.repository.description }}

.github/workflows/master-build.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: master
2+
3+
'on':
4+
pull_request:
5+
branches:
6+
- master
7+
push:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build_and_publish:
13+
runs-on: ubuntu-latest
14+
steps:
15+
-
16+
name: Set up QEMU
17+
uses: docker/setup-qemu-action@v2
18+
-
19+
name: Set up Docker Buildx
20+
uses: docker/setup-buildx-action@v2
21+
-
22+
name: Login to Docker Hub
23+
uses: docker/login-action@v2
24+
with:
25+
username: ${{ secrets.DOCKERHUB_USERNAME }}
26+
password: ${{ secrets.DOCKERHUB_TOKEN }}
27+
-
28+
name: Build and push
29+
uses: docker/build-push-action@v3
30+
with:
31+
push: true
32+
tags: larscom/gitlab-ci-dashboard:master

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# Compiled output
4+
.angular
5+
/dist
6+
/tmp
7+
/out-tsc
8+
/bazel-out
9+
10+
# Node
11+
**/**/node_modules
12+
npm-debug.log
13+
yarn-error.log
14+
15+
# local env files
16+
*.env*
17+
18+
# IDEs and editors
19+
.idea/
20+
.project
21+
.classpath
22+
.c9/
23+
*.launch
24+
.settings/
25+
*.sublime-workspace
26+
27+
# Visual Studio Code
28+
.vscode/*
29+
!.vscode/settings.json
30+
!.vscode/tasks.json
31+
!.vscode/launch.json
32+
!.vscode/extensions.json
33+
.history/*
34+
35+
# Miscellaneous
36+
/.angular/cache
37+
.sass-cache/
38+
/connect.lock
39+
/coverage
40+
/libpeerconnection.log
41+
testem.log
42+
/typings
43+
44+
# System files
45+
.DS_Store
46+
Thumbs.db

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tag-version-prefix=""

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true
4+
}

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
3+
"recommendations": ["angular.ng-template"]
4+
}

.vscode/launch.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Debug API",
9+
"type": "go",
10+
"request": "launch",
11+
"mode": "auto",
12+
"cwd": "./api",
13+
"program": "./api/cmd/main.go"
14+
},
15+
{
16+
"name": "ng serve",
17+
"type": "chrome",
18+
"request": "launch",
19+
"preLaunchTask": "npm: start",
20+
"url": "http://localhost:4200/"
21+
},
22+
{
23+
"name": "ng test",
24+
"type": "chrome",
25+
"request": "launch",
26+
"preLaunchTask": "npm: test",
27+
"url": "http://localhost:9876/debug.html"
28+
}
29+
]
30+
}

0 commit comments

Comments
 (0)