From c757e2c474bdc45479171bc18d24e77cfab3fa58 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Wed, 17 Apr 2024 15:30:06 +0900 Subject: [PATCH 1/2] Add Japanese README --- README-JA.md | 204 +++++++++++++++++++++++++++++++++++++++++++++++++++ README-ZH.md | 2 +- README.md | 2 +- 3 files changed, 206 insertions(+), 2 deletions(-) create mode 100644 README-JA.md diff --git a/README-JA.md b/README-JA.md new file mode 100644 index 00000000000..087f73bfae5 --- /dev/null +++ b/README-JA.md @@ -0,0 +1,204 @@ + + + + +# Flowise - LLMアプリを簡単に構築 + +[![Release Notes](https://img.shields.io/github/release/FlowiseAI/Flowise)](https://github.com/FlowiseAI/Flowise/releases) +[![Discord](https://img.shields.io/discord/1087698854775881778?label=Discord&logo=discord)](https://discord.gg/jbaHfsRVBW) +[![Twitter Follow](https://img.shields.io/twitter/follow/FlowiseAI?style=social)](https://twitter.com/FlowiseAI) +[![GitHub star chart](https://img.shields.io/github/stars/FlowiseAI/Flowise?style=social)](https://star-history.com/#FlowiseAI/Flowise) +[![GitHub fork](https://img.shields.io/github/forks/FlowiseAI/Flowise?style=social)](https://github.com/FlowiseAI/Flowise/fork) + +[English](./README.md) | [中文](./README-ZH.md) | 日本語 + +

ドラッグ&ドロップでカスタマイズしたLLMフローを構築できるUI

+ + + +## ⚡クイックスタート + +[NodeJS](https://nodejs.org/en/download) >= 18.15.0 をダウンロードしてインストール + +1. Flowise のインストール + ```bash + npm install -g flowise + ``` +2. Flowise の実行 + + ```bash + npx flowise start + ``` + + ユーザー名とパスワードを入力 + + ```bash + npx flowise start --FLOWISE_USERNAME=user --FLOWISE_PASSWORD=1234 + ``` + +3. [http://localhost:3000](http://localhost:3000) を開く + +## 🐳 Docker + +### Docker Compose + +1. プロジェクトのルートにある `docker` フォルダに移動する +2. `.env.example` ファイルをコピーして同じ場所に貼り付け、名前を `.env` に変更する +3. `docker-compose up -d` +4. [http://localhost:3000](http://localhost:3000) を開く +5. コンテナを停止するには、`docker-compose stop` を使用します + +### Docker Image + +1. ローカルにイメージを構築する: + ```bash + docker build --no-cache -t flowise . + ``` +2. image を実行: + + ```bash + docker run -d --name flowise -p 3000:3000 flowise + ``` + +3. image を停止: + ```bash + docker stop flowise + ``` + +## 👨‍💻 開発者向け + +Flowise には、3つの異なるモジュールが1つの mono リポジトリにあります。 + +- `server`: API ロジックを提供する Node バックエンド +- `ui`: React フロントエンド +- `components`: サードパーティノードとの統合 + +### 必須条件 + +- [PNPM](https://pnpm.io/installation) をインストール + ```bash + npm i -g pnpm + ``` + +### セットアップ + +1. リポジトリをクローン + + ```bash + git clone https://github.com/FlowiseAI/Flowise.git + ``` + +2. リポジトリフォルダに移動 + + ```bash + cd Flowise + ``` + +3. すべてのモジュールの依存関係をインストール: + + ```bash + pnpm install + ``` + +4. すべてのコードをビルド: + + ```bash + pnpm build + ``` + +5. アプリを起動: + + ```bash + pnpm start + ``` + + [http://localhost:3000](http://localhost:3000) でアプリにアクセスできるようになりました + +6. 開発用ビルド: + + - `.env` ファイルを作成し、`packages/ui` に `VITE_PORT` を指定する(`.env.example` を参照) + - `.env` ファイルを作成し、`packages/server` に `PORT` を指定する(`.env.example` を参照) + - 実行 + + ```bash + pnpm dev + ``` + + コードの変更は [http://localhost:8080](http://localhost:8080) に自動的にアプリをリロードします + +## 🔒 認証 + +アプリレベルの認証を有効にするには、 `FLOWISE_USERNAME` と `FLOWISE_PASSWORD` を `packages/server` の `.env` ファイルに追加します: + +``` +FLOWISE_USERNAME=user +FLOWISE_PASSWORD=1234 +``` + +## 🌱 環境変数 + +Flowise は、インスタンスを設定するためのさまざまな環境変数をサポートしています。`packages/server` フォルダ内の `.env` ファイルで以下の変数を指定することができる。[続き](https://github.com/FlowiseAI/Flowise/blob/main/CONTRIBUTING.md#-env-variables)を読む + +## 📖 ドキュメント + +[Flowise ドキュメント](https://docs.flowiseai.com/) + +## 🌐 セルフホスト + +お客様の既存インフラに Flowise をセルフホストでデプロイ、様々な[デプロイ]をサポートします(https://docs.flowiseai.com/configuration/deployment) + +- [AWS](https://docs.flowiseai.com/deployment/aws) +- [Azure](https://docs.flowiseai.com/deployment/azure) +- [Digital Ocean](https://docs.flowiseai.com/deployment/digital-ocean) +- [GCP](https://docs.flowiseai.com/deployment/gcp) +-
+ その他 + + - [Railway](https://docs.flowiseai.com/deployment/railway) + + [![Deploy on Railway](https://railway.app/button.svg)](https://railway.app/template/pn4G8S?referralCode=WVNPD9) + + - [Render](https://docs.flowiseai.com/deployment/render) + + [![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://docs.flowiseai.com/deployment/render) + + - [HuggingFace Spaces](https://docs.flowiseai.com/deployment/hugging-face) + + HuggingFace Spaces + + - [Elestio](https://elest.io/open-source/flowiseai) + + [![Deploy](https://pub-da36157c854648669813f3f76c526c2b.r2.dev/deploy-on-elestio-black.png)](https://elest.io/open-source/flowiseai) + + - [Sealos](https://cloud.sealos.io/?openapp=system-template%3FtemplateName%3Dflowise) + + [![](https://raw.githubusercontent.com/labring-actions/templates/main/Deploy-on-Sealos.svg)](https://cloud.sealos.io/?openapp=system-template%3FtemplateName%3Dflowise) + + - [RepoCloud](https://repocloud.io/details/?app_id=29) + + [![Deploy on RepoCloud](https://d16t0pc4846x52.cloudfront.net/deploy.png)](https://repocloud.io/details/?app_id=29) + +
+ +## 💻 クラウドホスト + +近日公開 + +## 🙋 サポート + +ご質問、問題提起、新機能のご要望は、[discussion](https://github.com/FlowiseAI/Flowise/discussions)までお気軽にどうぞ + +## 🙌 コントリビュート + +これらの素晴らしい貢献者に感謝します + + + + + +[コントリビューティングガイド](CONTRIBUTING.md)を参照してください。質問や問題があれば、[Discord](https://discord.gg/jbaHfsRVBW) までご連絡ください。 +[![Star History Chart](https://api.star-history.com/svg?repos=FlowiseAI/Flowise&type=Timeline)](https://star-history.com/#FlowiseAI/Flowise&Date) + +## 📄 ライセンス + +このリポジトリのソースコードは、[Apache License Version 2.0](LICENSE.md)の下で利用可能です。 diff --git a/README-ZH.md b/README-ZH.md index d2fe6223705..9ce1cac2504 100644 --- a/README-ZH.md +++ b/README-ZH.md @@ -10,7 +10,7 @@ [![GitHub星图](https://img.shields.io/github/stars/FlowiseAI/Flowise?style=social)](https://star-history.com/#FlowiseAI/Flowise) [![GitHub分支](https://img.shields.io/github/forks/FlowiseAI/Flowise?style=social)](https://github.com/FlowiseAI/Flowise/fork) -[English](./README.md) | 中文 +[English](./README.md) | 中文 | [日本語](./README-JA.md)

拖放界面构建定制化的LLM流程

diff --git a/README.md b/README.md index 7c5473dea4f..37123d8689a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ [![GitHub star chart](https://img.shields.io/github/stars/FlowiseAI/Flowise?style=social)](https://star-history.com/#FlowiseAI/Flowise) [![GitHub fork](https://img.shields.io/github/forks/FlowiseAI/Flowise?style=social)](https://github.com/FlowiseAI/Flowise/fork) -English | [中文](./README-ZH.md) +English | [中文](./README-ZH.md) | [日本語](./README-JA.md)

Drag & drop UI to build your customized LLM flow

From 27bcc16d45542b1a3a932f161e12bc872e1d44dd Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Wed, 17 Apr 2024 15:32:59 +0900 Subject: [PATCH 2/2] Update README-JA.md --- README-JA.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README-JA.md b/README-JA.md index 087f73bfae5..e43f6cc93ae 100644 --- a/README-JA.md +++ b/README-JA.md @@ -2,7 +2,7 @@ -# Flowise - LLMアプリを簡単に構築 +# Flowise - LLM アプリを簡単に構築 [![Release Notes](https://img.shields.io/github/release/FlowiseAI/Flowise)](https://github.com/FlowiseAI/Flowise/releases) [![Discord](https://img.shields.io/discord/1087698854775881778?label=Discord&logo=discord)](https://discord.gg/jbaHfsRVBW) @@ -12,7 +12,7 @@ [English](./README.md) | [中文](./README-ZH.md) | 日本語 -

ドラッグ&ドロップでカスタマイズしたLLMフローを構築できるUI

+

ドラッグ&ドロップでカスタマイズした LLM フローを構築できる UI

@@ -145,7 +145,7 @@ Flowise は、インスタンスを設定するためのさまざまな環境変 ## 🌐 セルフホスト -お客様の既存インフラに Flowise をセルフホストでデプロイ、様々な[デプロイ]をサポートします(https://docs.flowiseai.com/configuration/deployment) +お客様の既存インフラに Flowise をセルフホストでデプロイ、様々な[デプロイ](https://docs.flowiseai.com/configuration/deployment)をサポートします - [AWS](https://docs.flowiseai.com/deployment/aws) - [Azure](https://docs.flowiseai.com/deployment/azure) @@ -162,9 +162,9 @@ Flowise は、インスタンスを設定するためのさまざまな環境変 [![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://docs.flowiseai.com/deployment/render) - - [HuggingFace Spaces](https://docs.flowiseai.com/deployment/hugging-face) + - [Hugging Face Spaces](https://docs.flowiseai.com/deployment/hugging-face) - HuggingFace Spaces + Hugging Face Spaces - [Elestio](https://elest.io/open-source/flowiseai)