feat: update directory list in add-req.sh
Updated the directory list in add-req.sh to include previously commented-out directories and added new ones. The changes reflect a more complete set of project modules, including newly added ones like 'bootstrap', 'llm_models', and 'ui'. This ensures the script will process requirements for all current project components.
This commit is contained in:
parent
4b1b68e74d
commit
0e62b601da
2 changed files with 22 additions and 26 deletions
32
add-req.sh
32
add-req.sh
|
|
@ -19,28 +19,32 @@ for file in "${prompts[@]}"; do
|
||||||
done
|
done
|
||||||
|
|
||||||
dirs=(
|
dirs=(
|
||||||
# "auth"
|
"auth"
|
||||||
"automation"
|
"automation"
|
||||||
"basic"
|
"basic"
|
||||||
|
"bootstrap"
|
||||||
"bot"
|
"bot"
|
||||||
# "bootstrap"
|
"channels"
|
||||||
# "package_manager"
|
|
||||||
# "channels"
|
|
||||||
"config"
|
"config"
|
||||||
"context"
|
"context"
|
||||||
# "email"
|
"drive_monitor"
|
||||||
# "file"
|
"email"
|
||||||
# "llm"
|
"file"
|
||||||
# "drive_monitor"
|
|
||||||
# "llm_legacy"
|
|
||||||
# "org"
|
|
||||||
"session"
|
|
||||||
"kb"
|
"kb"
|
||||||
|
"llm"
|
||||||
|
"llm_models"
|
||||||
|
"org"
|
||||||
|
"package"
|
||||||
|
"package_manager"
|
||||||
|
"riot_compiler"
|
||||||
|
"session"
|
||||||
"shared"
|
"shared"
|
||||||
#"tests"
|
"tests"
|
||||||
"tools"
|
"tools"
|
||||||
# "web_automation"
|
"ui"
|
||||||
# "whatsapp"
|
"web_server"
|
||||||
|
"web_automation"
|
||||||
|
"whatsapp"
|
||||||
)
|
)
|
||||||
|
|
||||||
filter_rust_file() {
|
filter_rust_file() {
|
||||||
|
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
use std::fs;
|
|
||||||
use std::path::Path;
|
|
||||||
|
|
||||||
pub fn create_bucket(bucket_name: &str) -> std::io::Result<()> {
|
|
||||||
let bucket_path = Path::new("buckets").join(bucket_name);
|
|
||||||
fs::create_dir_all(&bucket_path)?;
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
Loading…
Add table
Reference in a new issue