Initial intranet dashboard app

This commit is contained in:
b17301
2026-04-07 15:15:15 +09:00
commit 27a29e8e4c
18 changed files with 7686 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/.."
if [ ! -x ".venv/bin/python" ]; then
echo "가상환경이 없습니다. 먼저 아래를 실행하세요."
echo "python3 -m venv .venv"
echo "source .venv/bin/activate"
echo "pip install -r requirements.txt"
exit 1
fi
exec ./.venv/bin/python main.py