diff options
-rw-r--r-- | BackEnd/Timeline/appsettings.Development.json | 2 | ||||
-rwxr-xr-x | dev | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/BackEnd/Timeline/appsettings.Development.json b/BackEnd/Timeline/appsettings.Development.json index 827a2f87..c12206f7 100644 --- a/BackEnd/Timeline/appsettings.Development.json +++ b/BackEnd/Timeline/appsettings.Development.json @@ -1,7 +1,7 @@ {
"Logging": {
"LogLevel": {
- "Default": "Debug"
+ "Default": "Information"
}
}
}
@@ -0,0 +1,6 @@ +#!/usr/bin/env sh + +MYDIR="$(dirname "$(realpath "$0")")" + +exec tmux new-session "cd ${MYDIR}/FrontEnd && pnpm run start" \; \ + split-window -h "cd ${MYDIR}/BackEnd/Timeline && dotnet run --launch-profile Dev" |