aboutsummaryrefslogtreecommitdiffstats
path: root/development.sh
diff options
context:
space:
mode:
authorJakub Dudycz <jakub.dudycz@nokia.com>2018-08-07 09:32:43 +0200
committerJakub Dudycz <jakub.dudycz@nokia.com>2018-08-07 09:32:43 +0200
commitf16fff6a5c15474d86ea304b499535076d5a368c (patch)
tree13b76f93b0c0dff6b5d80c650fdc9004cca5c8cd /development.sh
parent77f11bb84dc36638abcce8ffa1e1a67a3600b5a2 (diff)
Clean up repository
There are some leftover from gitlab that should be removed from/updated in official repo. Change-Id: I9e47321433ed2f744135b7fb85f140f381fe84e1 Issue-ID: DCAEGEN2-690 Signed-off-by: Jakub Dudycz <jakub.dudycz@nokia.com>
Diffstat (limited to 'development.sh')
-rwxr-xr-xdevelopment.sh66
1 files changed, 0 insertions, 66 deletions
diff --git a/development.sh b/development.sh
deleted file mode 100755
index 94500079..00000000
--- a/development.sh
+++ /dev/null
@@ -1,66 +0,0 @@
-#!/bin/bash
-
-# Usage: source ./development.sh and use functions defined here
-# https://httpie.org/ is required for API calls
-
-export MAVEN_OPTS="-T1C"
-
-function veshv_full_rebuild() {
- mvn clean install -Panalysis ${MAVEN_OPTS}
-}
-
-function veshv_rebuild() {
- mvn clean install ${MAVEN_OPTS}
-}
-
-function veshv_build() {
- mvn install ${MAVEN_OPTS}
-}
-
-function veshv_fast_build() {
- mvn install -DskipTests ${MAVEN_OPTS}
-}
-
-function veshv_docker_start() {
- docker-compose down
- docker-compose rm -f
- docker-compose up
-}
-
-function veshv_docker_clean() {
- docker volume prune
-}
-
-function veshv_build_and_start() {
- veshv_fast_build && veshv_docker_start
-}
-
-function veshv_fresh_restart() {
- docker-compose down
- docker-compose rm -f
- veshv_docker_clean
- veshv_fast_build && docker-compose up
-}
-
-function veshv_simul_dcaeapp_count() {
- http --json GET http://localhost:8100/messages/count
-}
-
-function veshv_simul_dcaeapp_last_key() {
- http --json GET http://localhost:8100/messages/last/key
-}
-
-function veshv_simul_dcaeapp_last_value() {
- http --json GET http://localhost:8100/messages/last/value
-}
-
-function veshv_simul_client() {
- # feed me with json file using "<"
- http --json POST http://localhost:8000/simulator/sync
-}
-
-function veshv_simul_client_async() {
- # feed me with json file using "<"
- http --json POST http://localhost:8000/simulator/async
-}
-