+ Приведены все функции приложения в рабочий вид

+ Наведен порядок в файлах проекта
+ Наведен порядок в документации
+ Настроены скрипты установки, развертки и так далее, расширен MakeFile
This commit is contained in:
2025-11-02 06:09:55 +09:00
parent 367e1c932e
commit 2e535513b5
6103 changed files with 7040 additions and 1027861 deletions

13
scripts/rebuild_no_cache.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
# scripts/rebuild_no_cache.sh
# Build and restart containers without cache
echo "Building containers without cache..."
docker compose build --no-cache
echo "Bringing up containers..."
docker compose up -d
echo "Containers are up"