Skip to content
Snippets Groups Projects
Commit d8ac0248 authored by Miroslav Puskaric's avatar Miroslav Puskaric
Browse files

setting up hub-ui for the development environment

parents
No related branches found
No related tags found
No related merge requests found
> 1%
last 2 versions
not dead
not ie 11
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
.theme-dockerfile
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 100
build/*.js
config/*.js
docs/*.js
guides/*.js
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'eslint:recommended',
'@vue/typescript/recommended'
],
parserOptions: {
ecmaVersion: 2020
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'vue/multi-word-component-names': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'vue/no-mutating-props': 'off',
'vue/no-use-v-if-with-v-for': 'off',
'vue/no-unused-components': 'off',
'vue/require-valid-default-prop': 'off',
'vue/require-v-for-key': 'off',
'vue/no-duplicate-attributes': 'off',
'no-constant-condition': 'off',
'no-unused-vars': 'off',
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/no-empty-function': 'off',
'vue/no-side-effects-in-computed-properties': 'off'
},
overrides: [
{
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/tests/unit/**/*.spec.{j,t}s?(x)'
],
env: {
jest: true
}
}
]
}
.DS_Store
node_modules
dist
storage
config/*.env.js
config/user-config.js
tests/unit/coverage
tests/e2e/reports
tests/e2e/screenshots
tests/e2e/videos
# local env files
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.iml
.npmrc 0 → 100644
@piveau:registry=https://paca.fokus.fraunhofer.de/repository/npm-hosted/
@deu:registry=https://paca.fokus.fraunhofer.de/repository/npm-group/
# registry=http://localhost:4873/ # In case you use Verdaccio for testing purposes
# registry=https://registry.npmjs.org/
.nvmrc 0 → 100644
16.18.1
# Contributing to Vanilla Piveau Hub-Ui development
FROM nginx:alpine
EXPOSE 8080
ADD dist /usr/share/nginx/html/
COPY nginx.vh.default.conf /etc/nginx/conf.d/default.conf
# The following steps are needed because of the OpenShift security constraints
# Create some temp folders for later permission granting and
# support running as arbitrary user which belogs to the root group
RUN mkdir /var/cache/nginx/uwsgi_temp && \
mkdir /var/cache/nginx/client_temp && \
mkdir /var/cache/nginx/proxy_temp && \
mkdir /var/cache/nginx/fastcgi_temp && \
mkdir /var/cache/nginx/scgi_temp && \
chmod g+rwx /var/cache/nginx /var/run /var/log/nginx /var/cache/nginx/client_temp
COPY runtimeconfig.sh /
RUN chmod +x /runtimeconfig.sh && \
chmod a+rw /usr/share/nginx/html/ && \
chmod a+rw /usr/share/nginx/html/assets && \
chmod a+rw /usr/share/nginx/html/assets/* && \
chmod a+rw /usr/share/nginx/html/app.*.js
CMD [ "/runtimeconfig.sh" ]
LICENSE 0 → 100644
Copyright (c) European Commission
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
This diff is collapsed.
This diff is collapsed.
import bg from './lang/bg.json';
import cs from './lang/cs.json';
import da from './lang/da.json';
import de from './lang/de.json';
import el from './lang/el.json';
import en from './lang/en.json';
import es from './lang/es.json';
import et from './lang/et.json';
import fi from './lang/fi.json';
import fr from './lang/fr.json';
import ga from './lang/ga.json';
import hr from './lang/hr.json';
import hu from './lang/hu.json';
import it from './lang/it.json';
import lt from './lang/lt.json';
import lv from './lang/lv.json';
import mt from './lang/mt.json';
import nl from './lang/nl.json';
import no from './lang/no.json';
import pl from './lang/pl.json';
import pt from './lang/pt.json';
import ro from './lang/ro.json';
import sk from './lang/sk.json';
import sl from './lang/sl.json';
import sv from './lang/sv.json';
export default {
bg,
cs,
da,
de,
el,
en,
es,
et,
fi,
fr,
ga,
hr,
hu,
it,
lt,
lv,
mt,
nl,
no,
pl,
pt,
ro,
sk,
sl,
sv,
};
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment