docs: Update README — 3-tab system (10-K Insights, DCF, Comps) + Project Origin & Vision (English)

This commit is contained in:
shawnkim1997
2026-02-13 22:13:43 +00:00
parent fd852c7075
commit ca42f3b83d
3 changed files with 394 additions and 284 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/bin/bash
# Push current (English) version to GitHub
# Run from project root: bash push_to_github.sh
set -e
cd "/Users/seonpil/Documents/FQDC Project"
echo "--- Git status ---"
git status
echo ""
echo "--- Add all changes ---"
git add -A
echo ""
echo "--- Commit (README: 3-tab architecture + Project Origin & Vision) ---"
git commit -m "docs: Update README — 3-tab system (10-K Insights, DCF, Comps) + Project Origin & Vision (English)"
echo ""
echo "--- Push to origin main ---"
git push origin main
echo ""
echo "Done. Check https://github.com/shawnkim1997/10-K-summariser-project"