/
Watarie
/
Prinex
Обзор
Документация
Войти
/
Watarie
/
Prinex
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
3
CI/CD
Аналитика
Безопасность
main
scripts/test_api.sh
15 строк
283 B
Watarie
docs: organize documentation and scripts structure + Vite config
05 июн 2026, 13:20
05 июн 2026, 13:20
df7d8eb
Код
Авторство
О чём код?
#!/bin/bash # test_api.sh - Test API endpoints echo "🧪 Testing API endpoints..." BASE_URL="http://localhost:8000" # Test health echo "Health check..." curl -s "$BASE_URL/health" | jq . # Test docs echo "API docs available at: $BASE_URL/docs" echo "✅ API testing complete!"