diff --git a/rstat_tool/dashboard.py b/rstat_tool/dashboard.py index ce15578..102ffb3 100644 --- a/rstat_tool/dashboard.py +++ b/rstat_tool/dashboard.py @@ -102,6 +102,13 @@ def deep_dive(symbol): return render_template("deep_dive.html", posts=posts, symbol=symbol) +@app.route("/about") +def about_page(): + """Handler for the static About page.""" + # We need to pass these so the navbar knows which items to highlight + return render_template("about.html", subreddit_name=None, view_type='daily') + + def start_dashboard(): """The main function called by the 'rstat-dashboard' command.""" log.info("Starting Flask server...") diff --git a/templates/about.html b/templates/about.html new file mode 100644 index 0000000..9ddcd00 --- /dev/null +++ b/templates/about.html @@ -0,0 +1,77 @@ +{% extends "dashboard_base.html" %} + +{% block title %}About RSTAT{% endblock %} + +{% block content %} +
DOGECOIN_ADDRESS_HERE_REPLACE_ME
+ + RSTAT (Reddit Stock Analysis Tool) is an automated data pipeline that scans popular financial communities on Reddit + to identify and analyze trending stock tickers. It provides a daily and weekly snapshot of the most discussed + stocks, their social sentiment, and key financial data. +
+ ++ The system is composed of several automated scripts: +
+ The counting logic is context-aware. If a stock ticker is found in a post's title, the system + assumes the entire comment section is about that ticker and credits it with a mention for every comment. If no + ticker is in the title, it only counts direct mentions within comments. This provides a more + accurate picture of a stock's overall discussion volume. +
+ ++ RSTAT is a free and soon-to-be open-source project developed as a passion for data and financial markets. To ensure the + dashboard remains fast, reliable, and publicly accessible, it is hosted on a small virtual server with running costs + of approximately $6 per month. +
++ If you find this tool useful and would like to help cover these costs, donations are gratefully accepted. In the + spirit of Reddit's market communities, the preferred method is Dogecoin (DOGE). You can send any amount to the + following address: +
+ +
+ DOGECOIN_ADDRESS_HERE_REPLACE_ME
+
+ + Thank you for your support! +
+ + +