-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreadme_creation.sh
18 lines (17 loc) · 1.07 KB
/
readme_creation.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
# Create README files
echo "Raw data files (CSV, Excel, etc.)" > ./data/raw_data/README.txt
echo "Processed data files (cleaned, preprocessed, feature-engineered)" > ./data/processed_data/README.txt
echo "Trained ML models (saved models, model checkpoints)" > ./backend/models/README.txt
echo "Backend scripts (data preprocessing, model training, evaluation)" > ./backend/scripts/README.txt
echo "Utility functions for backend tasks" > ./backend/utils/README.txt
echo "HTML templates (if using a web interface)" > ./frontend/templates/README.txt
echo "Static files (CSS, JavaScript, images)" > ./frontend/static/README.txt
echo "Frontend components" > ./frontend/components/README.txt
echo "Additional scripts for miscellaneous tasks" > ./helper_scripts/README.txt
echo "General utility functions used across the project" > ./utilities/README.txt
echo "Jupyter Notebooks" > ./notebooks/README.txt
echo "Any media files" > ./media/README.txt
echo "All Airflow DAGs files" > ./dags/README.txt
echo "Log files" > ./logs/README.txt
echo "All tests and unit test" > ./tests/README.txt