<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Shinde Aditya</title>
    <description>The latest articles on DEV Community by Shinde Aditya (@heyshinde).</description>
    <link>https://dev.to/heyshinde</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1123188%2Fc7634bac-db7d-44de-8be2-29f5319d57ae.jpg</url>
      <title>DEV Community: Shinde Aditya</title>
      <link>https://dev.to/heyshinde</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/heyshinde"/>
    <language>en</language>
    <item>
      <title>I built a terminal dashboard for managing Python project tasks</title>
      <dc:creator>Shinde Aditya</dc:creator>
      <pubDate>Tue, 04 Aug 2026 20:15:29 +0000</pubDate>
      <link>https://dev.to/heyshinde/i-built-a-terminal-dashboard-for-managing-python-project-tasks-3l2l</link>
      <guid>https://dev.to/heyshinde/i-built-a-terminal-dashboard-for-managing-python-project-tasks-3l2l</guid>
      <description>&lt;p&gt;Over the past few weeks I’ve been working on a small tool called TermBoard.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fzue4hpyl6e3i6gzwdsyw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fzue4hpyl6e3i6gzwdsyw.png" alt=" " width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It’s a terminal dashboard for running project tasks without having to remember how each project is set up.&lt;/p&gt;

&lt;p&gt;One project uses uv, another uses poetry, another has a plain virtual environment, and before long I find myself checking the README just to remember how to run tests or start the application.&lt;/p&gt;

&lt;p&gt;TermBoard tries to remove that friction.&lt;/p&gt;

&lt;p&gt;It automatically detects the Python environment for the current project and runs tasks in the right environment. At the moment it supports:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;uv&lt;/li&gt;
&lt;li&gt;poetry&lt;/li&gt;
&lt;li&gt;pipenv&lt;/li&gt;
&lt;li&gt;standard .venv&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of opening multiple terminals, tasks run in the background and their logs appear in a scrollable panel inside the dashboard. That means I can keep an eye on several long running commands without filling my terminal history with thousands of log lines.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F5kgw3n0hb99urt01nscy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F5kgw3n0hb99urt01nscy.png" alt=" " width="800" height="629"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Configuration is done with a simple termboard.toml file, so adding project specific tasks is straightforward.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fldv3jd0mc7pw0gv9z0qo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fldv3jd0mc7pw0gv9z0qo.png" alt=" " width="799" height="636"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The project is built with the Textual framework, which made it possible to build a terminal interface that still feels responsive while multiple tasks are running.&lt;/p&gt;

&lt;p&gt;If you’re happy with make, just, or shell scripts, those tools are great. TermBoard isn’t trying to replace them. It’s more about giving those tasks a persistent interface where you can start, stop, monitor, and inspect them from one place.&lt;/p&gt;

&lt;p&gt;If you’d like to try it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uv tool &lt;span class="nb"&gt;install &lt;/span&gt;termboard
&lt;span class="c"&gt;# or&lt;/span&gt;
pipx &lt;span class="nb"&gt;install &lt;/span&gt;termboard
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;GitHub: &lt;a href="https://github.com/HeyShinde/TermBoard" rel="noopener noreferrer"&gt;https://github.com/HeyShinde/TermBoard&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Documentation: &lt;a href="https://heyshinde.github.io/TermBoard/" rel="noopener noreferrer"&gt;https://heyshinde.github.io/TermBoard/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The project is still evolving, so I’d genuinely appreciate feedback. If there’s something that would make your own workflow easier, I’d love to hear about it.&lt;/p&gt;

</description>
      <category>python</category>
      <category>terminal</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
