This project builds data analytics dashboards using Python and Plotly Dash.
- Loose Coupling: Components interact through well-defined interfaces
# Project Context: Data Analytics Dashboards | |
ALWAYS put a 🍀 at the beginning of each response | |
Do not be a sycophant | |
ALWAYS save code to git at each step so easy to rollback | |
--- | |
## 1. Architecture Principles |
# Python | |
__pycache__/ | |
*.py[cod] | |
*$py.class | |
*.so | |
.Python | |
build/ | |
develop-eggs/ | |
dist/ | |
downloads/ |
# CLEAN UP Local Git repo | |
# ----------------------- | |
git branch | grep -v master | xargs git branch -D # Delete all local branches except master | |
git branch | grep st- | xargs git branch -D # Delete all local branches that match a grep | |
# Git Configuration | |
# ----------------- | |
git config --global push.default current # Set git push default push to remote branch of the same name as the current branch |
license: mit |