Added MyTTSCLient

This commit is contained in:
2025-08-31 19:55:40 +02:00
parent 2756ae7606
commit c836f86150

View File

@@ -5,7 +5,7 @@
alias pycharm="$HOME/Devtools/pycharm/current/bin/pycharm > /dev/null 2>&1 &" alias pycharm_wsl="$HOME/Devtools/pycharm/current/bin/pycharm > /dev/null 2>&1 &"
alias psg='ps -aef | grep' alias psg='ps -aef | grep'
def init.sheerka() { def init.sheerka() {
@@ -59,7 +59,8 @@ def init.myManagingTools() {
ADMIN_EMAIL='kodjo.sossouvi@gmail.com' ADMIN_EMAIL='kodjo.sossouvi@gmail.com'
ADMIN_PASSWORD='kodjo' ADMIN_PASSWORD='kodjo'
export DEV_HOME export DEV_HOME
export USER_NAME export ADMIN_EMAIL
export ADMIN_PASSWORD
secrets.myManagingTools secrets.myManagingTools
cd $DEV_HOME cd $DEV_HOME
} }
@@ -83,6 +84,21 @@ def init.myJiraTools() {
cd $DEV_HOME cd $DEV_HOME
} }
def init.weatherMCPTutorial() {
workon WeatherMCPTutorial
DEV_HOME=~/Dev/WeatherMCPTutorial
export DEV_HOME
cd $DEV_HOME
}
def init.myTTSClient()
workon MyTTSClient
DEV_HOME=~/Dev/MyTTSClient
export DEV_HOME
cd $DEV_HOME
}
def cdd() { def cdd() {
cd $DEV_HOME cd $DEV_HOME
} }