rag-app-on-aws
このアプリは、AWS上で動作するRAG(Retrieval-Augmented Generation)アプリケーションを構築するためのPythonベースのフレームワークです。ユーザーは、データを取得し、生成するプロセスを自動化することができ、効率的なワークフローを実現します。AWSの各種サービスと連携し、スケーラブルなアプリケーションを簡単に構築できます。
GitHubスター
33
ユーザー評価
未評価
お気に入り
0
閲覧数
28
フォーク
16
イシュー
1
インストール方法
難易度
上級推定所要時間
20-45 分
インストール方法
To remove all AWS resources created by this project for a specific environment:
1 Navigate to your repository's "Actions" tab on GitHub.
2 Find the "Manual AWS Cleanup" workflow in the sidebar.
3 Click "Run workflow".
4 Select the branch (usually your main or develop branch).
5 Enter the environment name (e.g.,
dev
, staging
, prod
) you wish to clean up.6 Click "Run workflow". This will execute the
Warning: This script will delete resources. Ensure you have the correct AWS credentials and region configured for your AWS CLI, and that you are targeting the correct environment.
scripts/cleanup.sh
script with the necessary context.1 Ensure
jq
is installed:bash
# On Debian/Ubuntu
sudo apt-get update && sudo apt-get install -y jq
# On macOS (using Homebrew)
brew install jq
2 Navigate to the
scripts
directory:bash
cd scripts
3 Make the script executable: