-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 0900441
Showing
92 changed files
with
19,760 additions
and
0 deletions.
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,32 @@ | ||
ARG NODE_VERSION="16-slim" | ||
FROM registry.puzzle.ch/docker.io/node:${NODE_VERSION} as dev | ||
|
||
STOPSIGNAL SIGINT | ||
RUN apt update && apt install -y \ | ||
make \ | ||
bash \ | ||
git | ||
WORKDIR /app | ||
|
||
CMD ["/usr/bin/make", "clean", "serve-dev"] | ||
|
||
#============== | ||
# Stage builder | ||
#============== | ||
|
||
FROM dev as builder | ||
|
||
COPY app/ /app | ||
|
||
WORKDIR /app | ||
|
||
RUN /usr/bin/make clean build | ||
|
||
#============== | ||
# Stage prod | ||
#============== | ||
|
||
FROM registry.puzzle.ch/docker.io/nginx:stable as prod | ||
|
||
COPY --from=builder /app/prod /usr/share/nginx/html | ||
|
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,21 @@ | ||
Entwicklung => opengis | ||
Coding => Trennung von Upstream und Integration! | ||
|| | ||
\/ | ||
Paketierung | ||
|
||
---- | ||
|
||
Integration => opengis/Kunde | ||
Deployment | ||
|| | ||
\/ | ||
Setup | ||
|
||
--- | ||
|
||
Administration => Kunde/opengis | ||
Rechte | ||
Daten | ||
Konfiguration | ||
|
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,15 @@ | ||
{ | ||
"plugins": [ | ||
"@babel/plugin-proposal-class-properties", | ||
"@babel/plugin-proposal-object-rest-spread" | ||
], | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"modules": false | ||
} | ||
], | ||
"@babel/preset-react" | ||
] | ||
} |
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,5 @@ | ||
/.git | ||
/node_modules | ||
/prod | ||
/dist | ||
/Dockerfile |
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,13 @@ | ||
; editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.{json,yml,md}] | ||
indent_size = 2 |
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,179 @@ | ||
{ | ||
"parser": "@babel/eslint-parser", // https://github.com/babel/babel/tree/main/eslint/babel-eslint-parser | ||
"parserOptions": { | ||
"babelOptions": { | ||
"configFile": "./.babelrc.json" | ||
} | ||
}, | ||
"plugins": [ | ||
"react" // https://github.com/yannickcr/eslint-plugin-react | ||
], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:react/recommended" | ||
], | ||
"env": { // http://eslint.org/docs/user-guide/configuring.html#specifying-environments | ||
"es6": true, | ||
"browser": true, // browser global variables | ||
"node": true // Node.js global variables and Node.js-specific rules | ||
}, | ||
"globals" : { | ||
/* MOCHA */ | ||
"describe" : false, | ||
"it" : false, | ||
"before" : false, | ||
"beforeEach" : false, | ||
"after" : false, | ||
"afterEach" : false, | ||
"__DEVTOOLS__": false | ||
}, | ||
"ecmaFeatures": { | ||
"arrowFunctions": true, | ||
"blockBindings": true, | ||
"classes": true, | ||
"defaultParams": true, | ||
"destructuring": true, | ||
"forOf": true, | ||
"generators": false, | ||
"modules": true, | ||
"objectLiteralComputedProperties": true, | ||
"objectLiteralDuplicateProperties": false, | ||
"objectLiteralShorthandMethods": true, | ||
"objectLiteralShorthandProperties": true, | ||
"spread": true, | ||
"superInFunctions": true, | ||
"templateStrings": true, | ||
"jsx": true | ||
}, | ||
"rules": { | ||
/** | ||
* Strict mode | ||
*/ | ||
// babel inserts "use strict"; for us | ||
"strict": [2, "never"], // http://eslint.org/docs/rules/strict | ||
|
||
/** | ||
* ES6 | ||
*/ | ||
"no-var": 2, // http://eslint.org/docs/rules/no-var | ||
"prefer-const": 2, // http://eslint.org/docs/rules/prefer-const | ||
|
||
/** | ||
* Variables | ||
*/ | ||
"no-shadow": 2, // http://eslint.org/docs/rules/no-shadow | ||
"no-shadow-restricted-names": 2, // http://eslint.org/docs/rules/no-shadow-restricted-names | ||
"no-unused-vars": [2, { // http://eslint.org/docs/rules/no-unused-vars | ||
"vars": "local", | ||
"args": "after-used" | ||
}], | ||
"no-use-before-define": 2, // http://eslint.org/docs/rules/no-use-before-define | ||
|
||
/** | ||
* Possible errors | ||
*/ | ||
"comma-dangle": [2, "never"], // http://eslint.org/docs/rules/comma-dangle | ||
"no-console": 1, // http://eslint.org/docs/rules/no-console | ||
"no-alert": 1, // http://eslint.org/docs/rules/no-alert | ||
"quote-props": [2, "consistent-as-needed"], // https://eslint.org/docs/rules/quote-props | ||
"block-scoped-var": 2, // http://eslint.org/docs/rules/block-scoped-var | ||
|
||
|
||
/** | ||
* Best practices | ||
*/ | ||
"consistent-return": 2, // http://eslint.org/docs/rules/consistent-return | ||
"curly": [2, "multi-line"], // http://eslint.org/docs/rules/curly | ||
"default-case": 2, // http://eslint.org/docs/rules/default-case | ||
"dot-notation": [2, { // http://eslint.org/docs/rules/dot-notation | ||
"allowKeywords": true | ||
}], | ||
"eqeqeq": 2, // http://eslint.org/docs/rules/eqeqeq | ||
"guard-for-in": 2, // http://eslint.org/docs/rules/guard-for-in | ||
"no-caller": 2, // http://eslint.org/docs/rules/no-caller | ||
"no-eq-null": 2, // http://eslint.org/docs/rules/no-eq-null | ||
"no-eval": 2, // http://eslint.org/docs/rules/no-eval | ||
"no-extend-native": 2, // http://eslint.org/docs/rules/no-extend-native | ||
"no-extra-bind": 2, // http://eslint.org/docs/rules/no-extra-bind | ||
"no-floating-decimal": 2, // http://eslint.org/docs/rules/no-floating-decimal | ||
"no-implied-eval": 2, // http://eslint.org/docs/rules/no-implied-eval | ||
"no-lone-blocks": 2, // http://eslint.org/docs/rules/no-lone-blocks | ||
"no-loop-func": 2, // http://eslint.org/docs/rules/no-loop-func | ||
"no-multi-str": 2, // http://eslint.org/docs/rules/no-multi-str | ||
"no-global-assign": 2, // http://eslint.org/docs/rules/no-global-assign | ||
"no-new": 2, // http://eslint.org/docs/rules/no-new | ||
"no-new-func": 2, // http://eslint.org/docs/rules/no-new-func | ||
"no-new-wrappers": 2, // http://eslint.org/docs/rules/no-new-wrappers | ||
"no-octal-escape": 2, // http://eslint.org/docs/rules/no-octal-escape | ||
"no-proto": 2, // http://eslint.org/docs/rules/no-proto | ||
"no-return-assign": 2, // http://eslint.org/docs/rules/no-return-assign | ||
"no-script-url": 2, // http://eslint.org/docs/rules/no-script-url | ||
"no-self-compare": 2, // http://eslint.org/docs/rules/no-self-compare | ||
"no-sequences": 2, // http://eslint.org/docs/rules/no-sequences | ||
"no-throw-literal": 2, // http://eslint.org/docs/rules/no-throw-literal | ||
"radix": 2, // http://eslint.org/docs/rules/radix | ||
"vars-on-top": 2, // http://eslint.org/docs/rules/vars-on-top | ||
"wrap-iife": [2, "any"], // http://eslint.org/docs/rules/wrap-iife | ||
"yoda": 2, // http://eslint.org/docs/rules/yoda | ||
|
||
/** | ||
* Style | ||
*/ | ||
"indent": [2, 4], // http://eslint.org/docs/rules/indent | ||
"brace-style": [2, // http://eslint.org/docs/rules/brace-style | ||
"1tbs", { | ||
"allowSingleLine": true | ||
}], | ||
"quotes": [ | ||
0, "single", "avoid-escape" // http://eslint.org/docs/rules/quotes | ||
], | ||
"camelcase": [2, { // http://eslint.org/docs/rules/camelcase | ||
"properties": "never" | ||
}], | ||
"comma-spacing": [2, { // http://eslint.org/docs/rules/comma-spacing | ||
"before": false, | ||
"after": true | ||
}], | ||
"comma-style": [2, "last"], // http://eslint.org/docs/rules/comma-style | ||
"eol-last": 2, // http://eslint.org/docs/rules/eol-last | ||
"func-names": 0, // http://eslint.org/docs/rules/func-names | ||
"key-spacing": [2, { // http://eslint.org/docs/rules/key-spacing | ||
"beforeColon": false, | ||
"afterColon": true | ||
}], | ||
"new-cap": [2, { // http://eslint.org/docs/rules/new-cap | ||
"newIsCap": true | ||
}], | ||
"no-multiple-empty-lines": [2, { // http://eslint.org/docs/rules/no-multiple-empty-lines | ||
"max": 2 | ||
}], | ||
"no-nested-ternary": 2, // http://eslint.org/docs/rules/no-nested-ternary | ||
"no-new-object": 2, // http://eslint.org/docs/rules/no-new-object | ||
"no-spaced-func": 2, // http://eslint.org/docs/rules/no-spaced-func | ||
"no-trailing-spaces": 2, // http://eslint.org/docs/rules/no-trailing-spaces | ||
"no-undef": 2, // https://eslint.org/docs/rules/no-undef | ||
"no-underscore-dangle": 0, // http://eslint.org/docs/rules/no-underscore-dangle | ||
"one-var": [2, "never"], // http://eslint.org/docs/rules/one-var | ||
"padded-blocks": [0, "never"], // http://eslint.org/docs/rules/padded-blocks | ||
"semi": [2, "always"], // http://eslint.org/docs/rules/semi | ||
"semi-spacing": [2, { // http://eslint.org/docs/rules/semi-spacing | ||
"before": false, | ||
"after": true | ||
}], | ||
"keyword-spacing": 2, // http://eslint.org/docs/rules/keyword-spacing | ||
"space-before-blocks": 2, // http://eslint.org/docs/rules/space-before-blocks | ||
"space-before-function-paren": [2, "never"], // http://eslint.org/docs/rules/space-before-function-paren | ||
"space-infix-ops": 2, // http://eslint.org/docs/rules/space-infix-ops | ||
"spaced-comment": 2, // http://eslint.org/docs/rules/spaced-comment | ||
|
||
/** | ||
* JSX style | ||
*/ | ||
"react/jsx-boolean-value": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-boolean-value.md | ||
"react/jsx-sort-props": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-sort-props.md | ||
"react/sort-prop-types": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/sort-prop-types.md | ||
"react/no-did-mount-set-state": [2, "disallow-in-func"], // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-did-mount-set-state.md | ||
"react/self-closing-comp": 2, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/self-closing-comp.md | ||
"react/jsx-wrap-multilines": 2 // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-wrap-multilines.md | ||
} | ||
} |
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,8 @@ | ||
node_modules/ | ||
dist/ | ||
prod/ | ||
icons/build | ||
npm-debug.log | ||
themes.json | ||
static/assets/img/genmapthumbs/* | ||
yarn-error.log |
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 @@ | ||
scripts-prepend-node-path=true |
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,46 @@ | ||
QWC2_VERSION_HASH="86ba224001cd3c9813ad645f4ccf4de7a17db801" | ||
QWC2_REPO_URL="https://github.com/qgis/qwc2.git" | ||
QWC2_FOLDER="qwc2" | ||
|
||
qwc2/.timestamp-clone: | ||
git clone $(QWC2_REPO_URL) $(QWC2_FOLDER) | ||
touch $@ | ||
|
||
qwc2/.timestamp-checkout: qwc2/.timestamp-clone | ||
cd $(QWC2_FOLDER) && git checkout $(QWC2_VERSION_HASH) | ||
|
||
node_modules/.timestamp-install: qwc2/.timestamp-checkout | ||
yarn install | ||
touch $@ | ||
|
||
prod/.timestamp-build: node_modules/.timestamp-install | ||
npm run tsupdate | ||
npm run iconfont | ||
# npm run themesconfig | ||
|
||
node_modules/webpack/bin/webpack.js --mode production --progress | ||
echo "<!-- Built: $(shell date -R) -->" >> ./prod/index.html | ||
echo "<!-- Built: $(QWC2_VERSION_HASH) -->" >> ./prod/index.html | ||
echo "<!-- Built: $(QWC2_REPO_URL) -->" >> ./prod/index.html | ||
echo "$(shell date -R)" >> ./prod/version.txt | ||
echo "$(QWC2_VERSION_HASH)" >> ./prod/version.txt | ||
echo "$(QWC2_REPO_URL)" >> ./prod/version.txt | ||
touch $@ | ||
|
||
.PHONY: install | ||
install: node_modules/.timestamp-install | ||
|
||
.PHONY: serve-dev | ||
serve-dev: install | ||
yarn start | ||
|
||
.PHONY: clean | ||
clean: | ||
rm -rf qwc2 | ||
rm -rf node_modules | ||
rm -rf .cache | ||
rm -rf prod | ||
rm -rf dist | ||
|
||
.PHONY: build | ||
build: prod/.timestamp-build |
Oops, something went wrong.