GitHub Actions commited on
Commit
1eb9a00
·
1 Parent(s): 72a9693

🚀 Auto-deploy from GitHub Actions

Browse files

Deployed from: bpmbox/AUTOCREATE
Commit: 0a736b7c6e50c68893a25f1dd3bb3738e87d6520
Branch: main
Workflow: 🚀 Deploy to Hugging Face Space

Updated files:
- System workflow analysis notebook
- Core Python modules
- Controllers and routers
- Documentation and configs

Files changed (1) hide show
  1. README.md +55 -2
README.md CHANGED
@@ -1,6 +1,6 @@
1
  # 🚀 AI Development Platform - Laravel風統合システム
2
 
3
- > **Django + FastAPI + Gradio + React** を完全統合した、モダンなAI開発プラットフォーム
4
 
5
  ![Platform Demo](https://img.shields.io/badge/Status-Production%20Ready-brightgreen)
6
  ![Python](https://img.shields.io/badge/Python-3.8+-blue)
@@ -8,6 +8,8 @@
8
  ![React](https://img.shields.io/badge/React-18+-61dafb)
9
  ![Django](https://img.shields.io/badge/Django-Latest-092e20)
10
  ![Gradio](https://img.shields.io/badge/Gradio-Latest-ff6b35)
 
 
11
 
12
  ## ✨ 特徴
13
 
@@ -22,11 +24,62 @@
22
  - **FastAPI Backend** - 高性能なAPI エンドポイント
23
  - **React Dashboard** - モダンなフロントエンド UI
24
 
25
- ### 🔧 **技術的ハイライト**
 
 
 
 
 
 
26
  - **ASGI 統合** - Django と FastAPI の完全統合
27
  - **SPA 対応** - React Router との完璧な連携
28
  - **静的ファイル管理** - 最適化された配信システム
29
  - **リアルタイム通信** - Supabase 統合
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
  ---
32
 
 
1
  # 🚀 AI Development Platform - Laravel風統合システム
2
 
3
+ > **Django + FastAPI + Gradio + React + VNC Desktop** を完全統合した、モダンなAI開発プラットフォーム
4
 
5
  ![Platform Demo](https://img.shields.io/badge/Status-Production%20Ready-brightgreen)
6
  ![Python](https://img.shields.io/badge/Python-3.8+-blue)
 
8
  ![React](https://img.shields.io/badge/React-18+-61dafb)
9
  ![Django](https://img.shields.io/badge/Django-Latest-092e20)
10
  ![Gradio](https://img.shields.io/badge/Gradio-Latest-ff6b35)
11
+ ![VNC](https://img.shields.io/badge/VNC-Desktop-orange)
12
+ ![Docker](https://img.shields.io/badge/Docker-Compose-blue)
13
 
14
  ## ✨ 特徴
15
 
 
24
  - **FastAPI Backend** - 高性能なAPI エンドポイント
25
  - **React Dashboard** - モダンなフロントエンド UI
26
 
27
+ ### �️ **VNC Desktop Environment**
28
+ - **Ubuntu Desktop** - ブラウザからアクセス可能なLinuxデスクトップ
29
+ - **VS Code Server** - Webブラウザ版Visual Studio Code
30
+ - **File Browser** - Webベースのファイル管理システム
31
+ - **Docker Management** - Portainerによる統合Docker管理
32
+
33
+ ### �🔧 **技術的ハイライト**
34
  - **ASGI 統合** - Django と FastAPI の完全統合
35
  - **SPA 対応** - React Router との完璧な連携
36
  - **静的ファイル管理** - 最適化された配信システム
37
  - **リアルタイム通信** - Supabase 統合
38
+ - **Container Orchestration** - Docker Composeによる完全自動化
39
+
40
+ ---
41
+
42
+ ## 🖥️ VNC Desktop Environment
43
+
44
+ ### 🚀 クイックスタート
45
+
46
+ ```bash
47
+ # VNC環境を起動
48
+ .\start_vnc.ps1
49
+
50
+ # または個別サービス起動
51
+ .\start_vnc.ps1 desktop
52
+
53
+ # VNC環境を停止
54
+ .\stop_vnc.ps1
55
+ ```
56
+
57
+ ### 📍 アクセス情報
58
+
59
+ | サービス | URL | 説明 |
60
+ |---------|-----|------|
61
+ | 🖥️ VNC Desktop | http://localhost:6081 | ブラウザ版Ubuntu Desktop |
62
+ | 🖥️ VNC Client | vnc://localhost:5901 | VNCクライアント接続 |
63
+ | 💻 VS Code Server | http://localhost:8443 | ブラウザ版VS Code |
64
+ | 📁 File Browser | http://localhost:8081 | Webファイル管理 |
65
+ | 🐳 Portainer | http://localhost:9001 | Docker管理UI |
66
+ | 🚀 PHPRunner | http://localhost:7860 | Gradio アップロードUI |
67
+ | 🐘 pgAdmin | http://localhost:5050 | PostgreSQL管理 |
68
+ | 🔴 Redis Commander | http://localhost:8082 | Redis管理 |
69
+
70
+ ### 🔑 認証情報
71
+
72
+ - **VNC Password**: `vncpassword`
73
+ - **Code Server Password**: `codepassword`
74
+ - **PostgreSQL**: `myuser` / `mypassword`
75
+ - **pgAdmin**: `[email protected]` / `admin`
76
+
77
+ ### 🛠️ VS Code Tasks
78
+
79
+ - `🖥️ VNC: Desktop Environment 起動` - VNC環境を起動
80
+ - `🖥️ VNC: Desktop Environment 停止` - VNC環境を停止
81
+ - `🌐 VNC: ダッシュボード表示` - VNCダッシュボードを開く
82
+ - `🔧 VNC: サービス状態確認` - サービスの状態を確認
83
 
84
  ---
85