- Introduced `docx-extractor` for extracting content and metadata from Word .docx files. - Added `docx2md` for converting Word .docx files to Markdown format. - Implemented `gpt` for generating text using OpenAI's GPT models. - Created `html2text` for converting HTML content to plain text. - Developed `mbox2eml` for converting MBOX mailbox files to individual .eml files. - Added `md2pdf` for converting Markdown files to PDF format. - Introduced `mdscraper` for combining text files into a single markdown document. - Created `pdf-extractor` for extracting content and metadata from PDF files. - Developed `pdf2md` for converting PDF files to Markdown format. - Implemented `protonmail` for managing ProtonMail emails via Bridge. - Added `schedule` for managing systemd timers and services. - Introduced `search` for managing searchable collections of files. - Added `text-extractor` for extracting content and metadata from text files. - Removed outdated recommendations document.
20 lines
439 B
Batchfile
20 lines
439 B
Batchfile
@echo off
|
|
REM run-manual.bat - Run devbox-connect manually (not as a service)
|
|
REM
|
|
REM Usage:
|
|
REM run-manual.bat - Uses tunnels.yaml in current directory
|
|
REM run-manual.bat C:\path\to\config - Uses specified config file
|
|
|
|
setlocal
|
|
|
|
set CONFIG=%1
|
|
if "%CONFIG%"=="" set CONFIG=tunnels.yaml
|
|
|
|
echo Starting devbox-connect with config: %CONFIG%
|
|
echo Press Ctrl+C to stop
|
|
echo.
|
|
|
|
devbox-connect -c "%CONFIG%" start
|
|
|
|
pause
|