Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • froggit/poc/dashy
1 result
Show changes
Commits on Source (8)
stages:
- 📝 publish
- 🧽 clean
variables:
SUB_GROUP: "poc"
# https://dashy.to/docs/management#web-server-configuration
BASE_URL: "/poc/dashy"
pages:
# https://github.com/Lissy93/dashy/issues/857
image: lissy93/dashy:2.1.0
stage: 📝 publish
script:
- echo "BASE_URL=$BASE_URL"
- cp src/* /app/public/
- cd /app
- yarn build
- mv /app/dist/ ${CI_PROJECT_DIR}/public
artifacts:
paths:
- public
# rules:
# - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
environment:
name: production
url: "https://froggit.froggit.page/poc/dashy/"
pages:preview:
extends: pages
artifacts:
expire_in: 1 week
variables:
BASE_URL: "/-/${SUB_GROUP}/${CI_PROJECT_NAME}/-/jobs/${CI_JOB_ID}/artifacts/public"
rules:
- if: $CI_MERGE_REQUEST_IID
environment:
name: preview/${CI_COMMIT_REF_NAME}
url: "https://${CI_PROJECT_ROOT_NAMESPACE}.${CI_PAGES_DOMAIN}/-/${SUB_GROUP}/${CI_PROJECT_NAME}/-/jobs/${CI_JOB_ID}/artifacts/public/index.html"
on_stop: pages:preview:stop
pages:preview:stop:
stage: 🧽 clean
rules:
- if: $CI_MERGE_REQUEST_IID
when: manual
allow_failure: true
environment:
name: preview/${CI_COMMIT_REF_NAME}
action: stop
script:
- echo "🧽 clean MR environment [preview/${CI_COMMIT_REF_NAME}]"
appConfig: appConfig:
theme: dashy-docs
language: fr
layout: auto layout: auto
iconSize: medium iconSize: medium
theme: dashy-docs
language: fr
startingView: default startingView: default
defaultOpeningMethod: newtab defaultOpeningMethod: newtab
statusCheck: false faviconApi: faviconkit
statusCheckInterval: 0 # On GitLab Page 'routingMode' must be 'hash'
faviconApi: allesedv # https://github.com/Lissy93/dashy/issues/351#issuecomment-986285310
routingMode: history routingMode: hash
enableMultiTasking: false enableMultiTasking: false
widgetsAlwaysUseProxy: false
webSearch: webSearch:
disableWebSearch: false disableWebSearch: false
searchEngine: duckduckgo searchEngine: qwant
openingMethod: newtab openingMethod: newtab
searchBangs: {} searchBangs: {}
enableFontAwesome: true enableFontAwesome: true
enableMaterialDesignIcons: false cssThemes: []
customColors: {}
externalStyleSheet: []
hideComponents: hideComponents:
hideHeading: false hideHeading: false
hideNav: false hideNav: false
...@@ -27,7 +28,6 @@ appConfig: ...@@ -27,7 +28,6 @@ appConfig:
auth: auth:
enableGuestAccess: false enableGuestAccess: false
users: [] users: []
enableKeycloak: false
showSplashScreen: false showSplashScreen: false
preventWriteToDisk: false preventWriteToDisk: false
preventLocalSave: false preventLocalSave: false
......