feat: release v0.2.2 - web interface with configurable port

This commit is contained in:
2026-04-17 14:38:38 +03:00
parent fe13a5e3a7
commit 48f32e63c2
2 changed files with 6 additions and 6 deletions

View File

@@ -4,10 +4,10 @@ NAS_USER="your_username"
NAS_PASS="your_password" NAS_PASS="your_password"
NAS_FILE="/Team Folder/path/to/file.osheet" NAS_FILE="/Team Folder/path/to/file.osheet"
# Logging # Logging (optional, defaults to info)
RUST_LOG="info" RUST_LOG="info"
# Web Server # Web Server (optional, defaults to 3000)
WEB_PORT="3000" WEB_PORT="3000"
# Nexrender # Nexrender
@@ -15,8 +15,8 @@ NEXRENDER_API_URL="http://nexrender-server:3050/api/v1/jobs"
OUTPUT_FOLDER="/path/to/output" OUTPUT_FOLDER="/path/to/output"
# After Effects Templates # After Effects Templates
TEMPLATE_DOUBLE_SRC="file:///path/to/double_team_template.aepx" TEMPLATE_DOUBLE_SRC="file:///path/to/double_team_template.aep"
TEMPLATE_SINGLE_SRC="file:///path/to/single_team_template.aepx" TEMPLATE_SINGLE_SRC="file:///path/to/single_team_template.aep"
TEMPLATE_COMPOSITION="main" TEMPLATE_COMPOSITION="main"
TEMPLATE_OUTPUT_MODULE="h264" TEMPLATE_OUTPUT_MODULE="h264"
TEMPLATE_OUTPUT_EXT="mp4" TEMPLATE_OUTPUT_EXT="mp4"

View File

@@ -108,10 +108,10 @@ RUST_LOG=debug ./target/release/ae_anons
# Или с указанием другого порта через .env файл # Или с указанием другого порта через .env файл
# WEB_PORT=8080 ./target/release/ae_anons --web # WEB_PORT=8080 ./target/release/ae_anons --web
# Сервер будет доступен по адресу http://localhost:3000 (или указанному порту)
## Веб-интерфейс
``` ```
## Веб-интерфейс
После запуска веб-сервера откройте браузер: После запуска веб-сервера откройте браузер:
- Главная страница: <http://localhost:3000> - Главная страница: <http://localhost:3000>