https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: c1d15ccd2c24fa4ce0d66051141d6d9a8ea01d6d authored by Lars Bilke on 11 March 2020, 14:28:06 UTC
Release notes 6.3.0
Tip revision: c1d15cc
netlify.toml
[build]
  base    = "web"
  publish = "web/public"
  command = """
    git lfs install
    git lfs pull
    yarn --ignore-engines --ignore-optional --non-interactive
    pandoc-citeproc --bib2json ../Documentation/bibliography.bib > data/bibliography.json
    hugo
    node_modules/.bin/hugo-algolia --toml -s"""

[build.environment] # global variables
  HUGO_VERSION = "0.64.1"
  GIT_LFS_ENABLED = "true"

[context.production.environment]
  HUGO_ENV = "production"
  HUGO_ENABLEGITINFO = "true"

[context.deploy-preview]
  command = """
    git lfs install
    git lfs pull
    yarn --ignore-engines --ignore-optional --non-interactive
    pandoc-citeproc --bib2json ../Documentation/bibliography.bib > data/bibliography.json
    hugo -b $DEPLOY_PRIME_URL"""

[context.branch-deploy]
  command = """
    git lfs install
    git lfs pull
    yarn --ignore-engines --ignore-optional --non-interactive
    pandoc-citeproc --bib2json ../Documentation/bibliography.bib > data/bibliography.json
    hugo -b $DEPLOY_PRIME_URL"""

[[redirects]]
  from = "/papers"
  to = "https://www.ufz.de/index.php?en=37204"
back to top