feat: /help command, atm.bat launcher, tzdata fix pentru Windows
- Telegram /h /help — listă comenzi în română - atm.bat — pornire cu venv local automat, pip install la primul run - tzdata adăugat în deps principale cu marker sys_platform==win32 - README: secțiuni dev, instalare Windows, flow-uri calibrare Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
15
atm.bat
Normal file
15
atm.bat
Normal file
@@ -0,0 +1,15 @@
|
||||
@echo off
|
||||
cd /d "%~dp0"
|
||||
|
||||
if not exist ".venv\Scripts\atm.exe" (
|
||||
echo Instalez atm in venv local...
|
||||
python -m venv .venv
|
||||
call .venv\Scripts\activate.bat
|
||||
pip install -e ".[windows]"
|
||||
)
|
||||
|
||||
if "%~1"=="" (
|
||||
.venv\Scripts\atm.exe run
|
||||
) else (
|
||||
.venv\Scripts\atm.exe %*
|
||||
)
|
||||
Reference in New Issue
Block a user