Deployment. #14

Merged
TorstenHettstedt merged 4 commits from deployment into master 2021-04-19 11:14:29 +02:00
Showing only changes of commit 46313cc290 - Show all commits
+7 -1
View File
@@ -1,5 +1,11 @@
#!/usr/bin/env bash
install_api_dependence() {
cd api/ || exit 2
composer install
cd ..
}
build_ui() {
cd ui/ || exit 2
npm run build
@@ -23,4 +29,4 @@ composer_run() {
docker-compose up -d
}
build_ui && test_unit && composer_run && test_api
install_api_dependence && build_ui && test_unit && composer_run && test_api