39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
Estructura del proyecto original:
|
|
|
|
└── LocalScriptsWeb
|
|
├── backend
|
|
│ ├── core
|
|
│ │ ├── __init__.py
|
|
│ │ ├── directory_handler.py
|
|
│ │ ├── group_settings_manager.py
|
|
│ │ ├── profile_manager.py
|
|
│ │ ├── script_manager.py
|
|
│ │ └── workdir_config.py
|
|
│ ├── script_groups
|
|
│ │ ├── example_group
|
|
│ │ │ ├── __init__.py
|
|
│ │ │ ├── config.json
|
|
│ │ │ ├── x1.py
|
|
│ │ │ └── x2.py
|
|
│ │ ├── __init__.py
|
|
│ │ ├── base_script.py
|
|
│ │ └── config.json
|
|
│ ├── __init__.py
|
|
│ └── app.py
|
|
├── data
|
|
│ └── profiles.json
|
|
├── frontend
|
|
│ ├── static
|
|
│ │ ├── css
|
|
│ │ │ └── style.css
|
|
│ │ └── js
|
|
│ │ ├── main.js
|
|
│ │ ├── modal.js
|
|
│ │ ├── profile.js
|
|
│ │ ├── scripts.js
|
|
│ │ └── workdir_config.js
|
|
│ └── templates
|
|
│ ├── base.html
|
|
│ └── index.html
|
|
├── claude_file_organizer.py
|
|
└── files.txt |