Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Sep 25, 2023
1 parent c9d25dc commit d0ad1f7
Show file tree
Hide file tree
Showing 579 changed files with 72,907 additions and 13,273 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Docker Image Community latest CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
name: Check out the repo
- uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: tiledesk/tiledesk-dashboard
tags: latest
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish Docker Community image tags

on:
push:
tags:
- '**' # Push events to every tag including hierarchical tags like
jobs:

push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Push to Docker Hub
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: tiledesk/tiledesk-dashboard
tag_with_ref: true
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,18 @@ testem.log
# System files
.DS_Store
Thumbs.db

# e2e
/e2e/*.js
/e2e/*.map

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

/src/environments/env-locali
37 changes: 34 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"prefix": "cds",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
Expand All @@ -28,9 +28,17 @@
"src/assets"
],
"styles": [
"src/styles.scss"
"src/styles.scss",
"src/assets/sass/cds/styles.scss",
"node_modules/@ng-select/ng-select/themes/default.theme.css",
"node_modules/material-icons/iconfont/material-icons.css",
"node_modules/roboto-fontface/css/roboto/roboto-fontface.css",
"node_modules/@ctrl/ngx-emoji-mart/picker.css"
],
"scripts": []
"scripts": [
"src/assets/js/mqtt/4.1.0/mqtt.min.js",
"node_modules/moment/moment.js"
]
},
"configurations": {
"production": {
Expand All @@ -54,6 +62,29 @@
],
"outputHashing": "all"
},
"pre": {
"optimization": {
"scripts": true,
"styles": {
"minify": false,
"inlineCritical": true
},
"fonts": true
},
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.pre.ts"
}
]
},
"development": {
"buildOptimizer": false,
"optimization": false,
Expand Down
Loading

0 comments on commit d0ad1f7

Please sign in to comment.