removed scripts, now only local for win & only docker for mac

This commit is contained in:
Mushka Nikita 2023-03-22 15:11:10 +03:00
parent b38be13fe8
commit 8e6ae01f4f
3 changed files with 23 additions and 76 deletions

View File

@ -1,37 +0,0 @@
@echo off
set root=%~dp0..\..
@REM if "%2%"=="Local" goto onLocal
@REM if "%2%"=="Docker" goto onDocker
@REM :onLocal
if "%1%"=="Start" goto onStartLocal
if "%1%"=="Restart" goto onRestartLocal
if "%1%"=="Stop" goto onStopLocal
:onStartLocal
"%root%\\build\\start\start.bat" start
:onRestartLocal
"%root%\\build\\start\\restart.bat" start
:onStopLocal
"%root%\\build\\start\\stop.bat" start
@REM :onDocker
@REM if "%1%"=="Start" goto onStartDocker
@REM if "%1%"=="Restart" goto onRestartDocker
@REM if "%1%"=="Stop" goto onStopDocker
@REM :onStartDocker
@REM echo "Start docker"
@REM "%root%\\build\\start\start.backend.docker.bat" start
@REM :onRestartDocker
@REM "%root%\\build\\start\\restart.backend.docker.bat" start
@REM :onStopDocker
@REM "%root%\\build\\start\\stop.backend.docker.bat" start

View File

@ -1,14 +0,0 @@
#!/bin/bash
scriptLocation=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
root=$(builtin cd $scriptLocation/../../; pwd)
if [ "$1" = "Start" ]
then (sh $root/build/start/start.backend.docker.sh)
elif [ "$1" = "Restart" ]
then (sh $root/build/start/restart.backend.docker.sh)
elif [ "$1" = "Stop" ]
then (sh $root/build/start/stop.backend.docker.sh)
else
echo "Unknown command"
fi

48
.vscode/tasks.json vendored
View File

@ -7,21 +7,9 @@
},
"tasks": [
{
"label": "Workspace folder test",
"label": "Frontend | Start",
"type": "shell",
"command": "echo ${workspaceFolder} && pause",
"osx": {
"command": "echo ${workspaceFolder} && read -p 'Press any key ...'"
}
},
{
"label": "Backend | Start",
"type": "shell",
"command": "${workspaceFolder}/.vscode/tasks-scripts/start.sh ${input:start-param} "
// "windows": {
// "command": "${workspaceFolder}\\.vscode\\tasks-scripts\\start.bat ${input:start-param}"
// "command": "${workspaceFolder}\\.vscode\\tasks-scripts\\start.bat ${input:start-param} ${input:local-docker}"
// }
"command": "cd ${workspaceFolder} ; yarn start"
},
{
"label": "Backend | Build",
@ -32,19 +20,29 @@
}
},
{
"label": "Frontend | Start",
"label": "Backend | Start",
"type": "shell",
"command": "cd ${workspaceFolder} ; yarn start"
"command": "${workspaceFolder}/build/start/start.backend.docker.sh",
"windows": {
"command": "${workspaceFolder}\\build\\start\\start.bat"
}
},
{
"label": "Backend | Restart",
"type": "shell",
"command": "${workspaceFolder}/build/start/restart.backend.docker.sh",
"windows": {
"command": "${workspaceFolder}\\build\\start\\restart.bat"
}
},
{
"label": "Backend | Stop",
"type": "shell",
"command": "${workspaceFolder}/build/start/stop.backend.docker.sh",
"windows": {
"command": "${workspaceFolder}\\build\\start\\stop.bat"
}
}
// {
// "label": "Migrate",
// "type": "shell",
// "command": "${workspaceFolder}\\build\\runMigrations.sh",
// "windows": {
// "command": "${workspaceFolder}\\build\\runMigrations.bat"
// }
// }
],
"inputs": [
{