Skip to content
Snippets Groups Projects
Commit 787ded4d authored by Steinwender, Tamara's avatar Steinwender, Tamara
Browse files

Merge branch 'master' of gitlab.tugraz.at:dbp/web-components/toolkit

parents 5f8b798f 2cc0338c
No related branches found
No related tags found
No related merge requests found
Pipeline #14038 passed
...@@ -47,15 +47,18 @@ ...@@ -47,15 +47,18 @@
```bash ```bash
# get the source # get the source
git clone git@gitlab.tugraz.at:dbp/web-components/Auth.git git clone git@gitlab.tugraz.at:dbp/web-components/toolkit.git
cd Auth cd toolkit/packages/auth
git submodule update --init git submodule update --init
# install dependencies (make sure you have npm version 4+ installed, so symlinks to the git submodules are created automatically) # install dependencies
npm install yarn install
# constantly build dist/bundle.js and run a local web-server on port 8002 # constantly build dist/bundle.js and run a local web-server on port 8002
npm run watch-local yarn run watch-local
# build local packages in dist directory
yarn run build
``` ```
Jump to <http://localhost:8002> and you should get a Single Sign On login page. Jump to <http://localhost:8002> and you should get a Single Sign On login page.
...@@ -42,6 +42,9 @@ yarn run watch-local ...@@ -42,6 +42,9 @@ yarn run watch-local
# run tests # run tests
yarn test yarn test
# build local packages in dist directory
yarn run build
``` ```
Jump to <http://localhost:8002> and you should get a Single Sign On login page. Jump to <http://localhost:8002> and you should get a Single Sign On login page.
...@@ -26,15 +26,18 @@ ...@@ -26,15 +26,18 @@
# Local development # Local development
```bash ```bash
# get the source # get the source
git clone git@gitlab.tugraz.at:dbp/web-components/DataTableView.git git clone git@gitlab.tugraz.at:dbp/web-components/toolkit.git
cd DataTableView cd toolkit/packages/data-table-view
git submodule update --init git submodule update --init
# install dependencies (make sure you have npm version 4+ installed, so symlinks to the git submodules are created automatically) # install dependencies
npm install yarn install
# constantly build dist/bundle.js and run a local web-server on port 8003 # constantly build dist/bundle.js and run a local web-server on port 8002
npm run watch-local yarn run watch-local
# build local packages in dist directory
yarn run build
``` ```
Jump to <http://localhost:8003> and you should get a demo page. Jump to <http://localhost:8003> and you should get a demo page.
...@@ -88,16 +88,19 @@ files to a [Nextcloud](https://nextcloud.com/) instance. ...@@ -88,16 +88,19 @@ files to a [Nextcloud](https://nextcloud.com/) instance.
## Local development ## Local development
```bash ```bash
# get the source code # get the source
git clone git@gitlab.tugraz.at:dbp/web-components/FileHandling.git git clone git@gitlab.tugraz.at:dbp/web-components/toolkit.git
cd FileHandling cd toolkit/packages/file-handling
git submodule update --init git submodule update --init
# install dependencies (make sure you have npm version 4+ installed, so symlinks to the git submodules are created automatically) # install dependencies
npm install yarn install
# constantly build dist/bundle.js and run a local web-server on port 8002 # constantly build dist/bundle.js and run a local web-server on port 8002
npm run watch-local yarn run watch-local
# build local packages in dist directory
yarn run build
``` ```
Jump to <http://localhost:8002> and you should get a demo page. Jump to <http://localhost:8002> and you should get a demo page.
......
...@@ -21,15 +21,18 @@ ...@@ -21,15 +21,18 @@
```bash ```bash
# get the source # get the source
git clone git@gitlab.tugraz.at:dbp/web-components/KnowledgeBaseWebPageElementView.git git clone git@gitlab.tugraz.at:dbp/web-components/toolkit.git
cd KnowledgeBaseWebPageElementView cd toolkit/packages/knowledge-base-web-page-element-view
git submodule update --init git submodule update --init
# install dependencies (make sure you have npm version 4+ installed, so symlinks to the git submodules are created automatically) # install dependencies
npm install yarn install
# constantly build dist/bundle.js and run a local web-server on port 8002 # constantly build dist/bundle.js and run a local web-server on port 8002
npm run watch-local yarn run watch-local
# build local packages in dist directory
yarn run build
``` ```
Jump to <http://localhost:8002> and you should get a demo page. Jump to <http://localhost:8002> and you should get a demo page.
...@@ -4,16 +4,16 @@ ...@@ -4,16 +4,16 @@
```bash ```bash
# get the source # get the source
git clone git@gitlab.tugraz.at:dbp/web-components/LanguageSelect.git git clone git@gitlab.tugraz.at:dbp/web-components/toolkit.git
cd LanguageSelect cd toolkit/packages/language-select
git submodule update --init git submodule update --init
# install dependencies (make sure you have npm version 4+ installed, so symlinks to the git submodules are created automatically) # install dependencies
npm install yarn install
# constantly build dist/bundle.js and run a local web-server on port 8002 # constantly build dist/bundle.js and run a local web-server on port 8002
npm run watch-local yarn run watch-local
# run tests # build local packages in dist directory
npm test yarn run build
``` ```
...@@ -48,6 +48,9 @@ yarn run watch ...@@ -48,6 +48,9 @@ yarn run watch
# run tests # run tests
yarn test yarn test
# build local packages in dist directory
yarn run build
``` ```
Jump to <http://localhost:8002> and you should get a demo page. Jump to <http://localhost:8002> and you should get a demo page.
...@@ -28,18 +28,21 @@ send({ ...@@ -28,18 +28,21 @@ send({
```bash ```bash
# get the source # get the source
git clone git@gitlab.tugraz.at:dbp/web-components/Notification.git git clone git@gitlab.tugraz.at:dbp/web-components/toolkit.git
cd Notification cd toolkit/packages/notification
git submodule update --init git submodule update --init
# install dependencies (make sure you have npm version 4+ installed, so symlinks to the git submodules are created automatically) # install dependencies
npm install yarn install
# constantly build dist/bundle.js and run a local web-server on port 8002 # constantly build dist/bundle.js and run a local web-server on port 8002
npm run watch-local yarn run watch
# run tests # run tests
npm test yarn test
# build local packages in dist directory
yarn run build
``` ```
Jump to <http://localhost:8002> and you should get a demo page. Jump to <http://localhost:8002> and you should get a demo page.
...@@ -19,18 +19,21 @@ ...@@ -19,18 +19,21 @@
```bash ```bash
# get the source # get the source
git clone git@gitlab.tugraz.at:dbp/web-components/PersonProfile.git git clone git@gitlab.tugraz.at:dbp/web-components/toolkit.git
cd PersonProfile cd toolkit/packages/person-profile
git submodule update --init git submodule update --init
# install dependencies (make sure you have npm version 4+ installed, so symlinks to the git submodules are created automatically) # install dependencies
npm install yarn install
# constantly build dist/bundle.js and run a local web-server on port 8002 # constantly build dist/bundle.js and run a local web-server on port 8002
npm run watch-local yarn run watch
# run tests # run tests
npm test yarn test
# build local packages in dist directory
yarn run build
``` ```
Jump to <http://localhost:8002> and you should get a Single Sign On login page. Jump to <http://localhost:8002> and you should get a Single Sign On login page.
...@@ -31,18 +31,21 @@ ...@@ -31,18 +31,21 @@
```bash ```bash
# get the source # get the source
git clone git@gitlab.tugraz.at:dbp/web-components/PersonSelect.git git clone git@gitlab.tugraz.at:dbp/web-components/toolkit.git
cd PersonSelect cd toolkit/packages/person-select
git submodule update --init git submodule update --init
# install dependencies (make sure you have npm version 4+ installed, so symlinks to the git submodules are created automatically) # install dependencies
npm install yarn install
# constantly build dist/bundle.js and run a local web-server on port 8002 # constantly build dist/bundle.js and run a local web-server on port 8002
npm run watch-local yarn run watch
# run tests # run tests
npm test yarn test
# build local packages in dist directory
yarn run build
``` ```
Jump to <http://localhost:8002> and you should get a Single Sign On login page. Jump to <http://localhost:8002> and you should get a Single Sign On login page.
...@@ -48,6 +48,9 @@ yarn run watch-local ...@@ -48,6 +48,9 @@ yarn run watch-local
# run tests # run tests
yarn test yarn test
# build local packages in dist directory
yarn run build
``` ```
Jump to <http://localhost:8002> and you should get a demo page. Jump to <http://localhost:8002> and you should get a demo page.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment