<?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: Adelodun Peter</title>
    <description>The latest articles on DEV Community by Adelodun Peter (@adelodunpeter).</description>
    <link>https://dev.to/adelodunpeter</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3598658%2F13c5b6fb-7196-4645-9efd-1c5a99031f44.png</url>
      <title>DEV Community: Adelodun Peter</title>
      <link>https://dev.to/adelodunpeter</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/adelodunpeter"/>
    <language>en</language>
    <item>
      <title>I Need a Postgres Instance. Now.</title>
      <dc:creator>Adelodun Peter</dc:creator>
      <pubDate>Mon, 22 Dec 2025 10:26:18 +0000</pubDate>
      <link>https://dev.to/adelodunpeter/i-need-a-postgres-instance-now-4jgk</link>
      <guid>https://dev.to/adelodunpeter/i-need-a-postgres-instance-now-4jgk</guid>
      <description>&lt;p&gt;I'm not trying to deploy to production.&lt;br&gt;&lt;br&gt;
I'm not setting up infra.&lt;br&gt;&lt;br&gt;
I just want to build something.&lt;/p&gt;

&lt;p&gt;Yet somehow, getting a local database looks like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Install Docker
&lt;/li&gt;
&lt;li&gt;Learn Docker (enough to not break things)
&lt;/li&gt;
&lt;li&gt;Run Docker
&lt;/li&gt;
&lt;li&gt;Write a &lt;code&gt;docker-compose.yml&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Pull images
&lt;/li&gt;
&lt;li&gt;Expose ports
&lt;/li&gt;
&lt;li&gt;Pray nothing else is already using that port
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All of this… just to get &lt;strong&gt;Postgres running locally&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;That friction adds up. Especially when you're experimenting, prototyping, or switching projects often.&lt;/p&gt;


&lt;h2&gt;
  
  
  The Real Problem
&lt;/h2&gt;

&lt;p&gt;The problem isn't Postgres.&lt;/p&gt;

&lt;p&gt;The problem is that &lt;strong&gt;starting a database shouldn't feel like infrastructure work&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Databases are foundational tools. They should be:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fast to start
&lt;/li&gt;
&lt;li&gt;Easy to stop
&lt;/li&gt;
&lt;li&gt;Disposable
&lt;/li&gt;
&lt;li&gt;Local-first
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead, we've normalized spinning up containers, managing configs, and debugging environment issues before we even write our first query.&lt;/p&gt;


&lt;h2&gt;
  
  
  What If It Was Just One Command?
&lt;/h2&gt;

&lt;p&gt;What if starting a database was as simple as:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;instant-db start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No Docker.&lt;br&gt;&lt;br&gt;
No containers to manage.&lt;br&gt;&lt;br&gt;
No extra mental overhead.&lt;/p&gt;

&lt;p&gt;Just… a database. Running. Ready.&lt;/p&gt;

&lt;p&gt;That question is why I'm building Instant DB.&lt;/p&gt;
&lt;h2&gt;
  
  
  Introducing Instant DB
&lt;/h2&gt;

&lt;p&gt;Instant DB is a single-command local database launcher.&lt;/p&gt;

&lt;p&gt;Right now, it supports:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;PostgreSQL&lt;/li&gt;
&lt;li&gt;Redis&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;More engines are coming.&lt;/p&gt;

&lt;p&gt;You run one command, and you immediately have a working database instance you can connect to from your app, your ORM, or your SQL client.&lt;/p&gt;

&lt;p&gt;It's designed for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Local development&lt;/li&gt;
&lt;li&gt;Prototyping&lt;/li&gt;
&lt;li&gt;Testing&lt;/li&gt;
&lt;li&gt;Side projects&lt;/li&gt;
&lt;li&gt;Hackathons&lt;/li&gt;
&lt;li&gt;Anyone who just wants to move fast&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  Why Not Docker?
&lt;/h2&gt;

&lt;p&gt;Docker is powerful — but it's also heavy.&lt;/p&gt;

&lt;p&gt;For many developers, especially beginners or solo builders like me:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Docker adds cognitive load&lt;/li&gt;
&lt;li&gt;Debugging containers becomes a distraction&lt;/li&gt;
&lt;li&gt;The setup cost outweighs the benefit for local work&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instant DB isn't trying to replace Docker in production.&lt;/p&gt;

&lt;p&gt;It's trying to remove friction during development.&lt;/p&gt;


&lt;h2&gt;
  
  
  The Goal
&lt;/h2&gt;

&lt;p&gt;My goal with Instant DB is simple:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Databases should feel like tools, not projects.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You shouldn't need a tutorial to start a local database.&lt;/p&gt;

&lt;p&gt;You shouldn't lose momentum before you even begin.&lt;/p&gt;


&lt;h2&gt;
  
  
  Still Early — But Moving Fast
&lt;/h2&gt;

&lt;p&gt;Instant DB is still evolving.&lt;/p&gt;

&lt;p&gt;Postgres and Redis are just the beginning.&lt;/p&gt;

&lt;p&gt;The vision is a growing list of supported databases, all started the same way:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;instant-db start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;One command.&lt;br&gt;&lt;br&gt;
Instant database.&lt;br&gt;&lt;br&gt;
Zero drama.&lt;/p&gt;
&lt;h2&gt;
  
  
  Try It / Get Involved 🚀
&lt;/h2&gt;

&lt;p&gt;👉 &lt;strong&gt;GitHub:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://github.com/db-toolkit/instantdb" rel="noopener noreferrer"&gt;https://github.com/db-toolkit/instantdb&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;Install instantly(Mac and Linux, Windows coming soon):&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-sSL&lt;/span&gt; https://raw.githubusercontent.com/db-toolkit/instantdb/main/install.sh | bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If this resonates with you — I'd love to hear your thoughts and feedback.&lt;/p&gt;

</description>
      <category>postgres</category>
      <category>productivity</category>
      <category>tooling</category>
    </item>
    <item>
      <title>DB-Toolkit - Database Management Made Simple</title>
      <dc:creator>Adelodun Peter</dc:creator>
      <pubDate>Sat, 13 Dec 2025 18:17:12 +0000</pubDate>
      <link>https://dev.to/adelodunpeter/db-toolkit-database-management-made-simple-3bdp</link>
      <guid>https://dev.to/adelodunpeter/db-toolkit-database-management-made-simple-3bdp</guid>
      <description>&lt;h3&gt;
  
  
  For a long time, I searched for a modern database tool that truly fit the way I work.
&lt;/h3&gt;

&lt;p&gt;Not just something that connects to a database, but something that stays out of the way, and feels intuitive to use.&lt;/p&gt;

&lt;p&gt;I wanted multiple databases open without mental clutter, a workflow that minimizes context switching, an editor that just makes sense, and a tool that feels like it belongs in 2025 — not 2012.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I couldn’t find it.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;So I started building it.&lt;/p&gt;

&lt;p&gt;That journey became &lt;strong&gt;DB Toolkit&lt;/strong&gt; — a cross-platform desktop database management application built from frustration and real needs.&lt;/p&gt;

&lt;p&gt;👉&lt;a href="https://dbtoolkit.vercel.app" rel="noopener noreferrer"&gt;Check It Out&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What started as “let me fix this small annoyance” turned into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Multi-database support (PostgreSQL, MySQL, SQLite, MongoDB) &lt;/li&gt;
&lt;li&gt;A schema explorer that actually helps you understand your data &lt;/li&gt;
&lt;li&gt;A Monaco-powered query editor with history and multiple tabs Workspaces that let me isolate projects and think clearly&lt;/li&gt;
&lt;li&gt;A data explorer that lets you edit, import/export, and preview data effortlessly&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;DB Toolkit is just getting started.&lt;br&gt;
I’m still learning. Still improving.&lt;/p&gt;

&lt;p&gt;&lt;a href=":%20https://dbtoolkit.vercel.app"&gt;🔗 DB Toolkit&lt;/a&gt;&lt;br&gt;
Would love feedback from fellow developers&lt;/p&gt;

</description>
      <category>database</category>
      <category>productivity</category>
      <category>learning</category>
    </item>
    <item>
      <title>🚀 Stop Fighting Alembic — FastAPI &amp; Flask Migrations Can Finally Be as Simple as Django.</title>
      <dc:creator>Adelodun Peter</dc:creator>
      <pubDate>Mon, 17 Nov 2025 14:53:16 +0000</pubDate>
      <link>https://dev.to/adelodunpeter/stop-fighting-alembic-fastapi-flask-migrations-can-finally-be-as-simple-as-django-1d9k</link>
      <guid>https://dev.to/adelodunpeter/stop-fighting-alembic-fastapi-flask-migrations-can-finally-be-as-simple-as-django-1d9k</guid>
      <description>&lt;p&gt;If you’ve ever tried setting up Alembic, you probably went through this cycle:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;create a migrations folder&lt;/li&gt;
&lt;li&gt;edit alembic.ini&lt;/li&gt;
&lt;li&gt;modify env.py&lt;/li&gt;
&lt;li&gt;manually import your models&lt;/li&gt;
&lt;li&gt;configure database URLs&lt;/li&gt;
&lt;li&gt;hope it works&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And when it finally runs, you pray nothing breaks when you update your models again.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I hated this.&lt;br&gt;
Every FastAPI / Flask / SQLAlchemy developer I know hates this.&lt;br&gt;
So I built something to fix it.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Introducing Migrator — A Zero-Config Migration CLI for Python
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;Migrator&lt;/em&gt; brings Django-like migrations to FastAPI and Flask.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;No configuration.&lt;br&gt;
No boilerplate.&lt;br&gt;
No Alembic headaches.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Just migrations that work.&lt;/p&gt;

&lt;p&gt;❌ Before Migrator: Alembic Setup Pain&lt;/p&gt;

&lt;p&gt;Traditional Alembic workflow:&lt;br&gt;
&lt;code&gt;alembic init migrations&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;edit alembic.ini&lt;/li&gt;
&lt;li&gt;edit env.py&lt;/li&gt;
&lt;li&gt;import models, configure engine&lt;/li&gt;
&lt;li&gt;hope it works&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you've done it, you know how fragile this is.&lt;/p&gt;

&lt;p&gt;✅ After Migrator: Pure Simplicity&lt;/p&gt;

&lt;p&gt;&lt;code&gt;migrator init&lt;br&gt;
migrator makemigrations "initial"&lt;br&gt;
migrator migrate&lt;/code&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;That’s it. No configs. No patches. No manual imports. It just works.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;
  
  
  🔍 How Migrator Works
&lt;/h3&gt;

&lt;p&gt;✔️ Finds your models automatically&lt;br&gt;
✔️ Detects your database engine&lt;br&gt;
✔️ Builds migration environment&lt;br&gt;
✔️ Wires Alembic automatically&lt;br&gt;
✔️ Runs safe schema diffs&lt;/p&gt;

&lt;p&gt;This means you keep the power of Alembic, without any of the setup.&lt;/p&gt;

&lt;p&gt;🎉 Why Migrator Rocks&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Zero configuration&lt;/li&gt;
&lt;li&gt;Auto-discovery of models &amp;amp; metadata&lt;/li&gt;
&lt;li&gt;Framework-agnostic (FastAPI, Flask, Django, SQLAlchemy)&lt;/li&gt;
&lt;li&gt;Django-like workflow&lt;/li&gt;
&lt;li&gt;Production-ready (powered by Alembic)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🧪 Quick Start&lt;/p&gt;

&lt;p&gt;Install:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;curl -sSL https://raw.githubusercontent.com/Adelodunpeter25/migrator/main/install.sh | bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Initialize:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;migrator init
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Create first migration:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;migrator makemigrations "initial"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Apply:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;migrator migrate
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Done.&lt;/p&gt;

&lt;h3&gt;
  
  
  💬 Final Thoughts
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;Python needed a migration tool like this.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;FastAPI and Flask are amazing frameworks — but Alembic setup has always been a huge barrier for beginners and even experienced devs.&lt;/p&gt;

&lt;p&gt;Migrator removes the friction so you can focus on building, not fighting config files.&lt;/p&gt;

&lt;p&gt;If you want migrations that work like Django, without switching ecosystems, give Migrator a try.&lt;/p&gt;

&lt;p&gt;
  &lt;a href="https://github.com/Adelodunpeter25/migrator" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; •
  &lt;a href="https://pypi.org/project/migrator-cli" rel="noopener noreferrer"&gt;PyPI&lt;/a&gt; •
  &lt;a href="https://migrator-cli.vercel.app" rel="noopener noreferrer"&gt;Docs&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;I would love feedback, suggestions, and contributors, this is just the beginning.&lt;/p&gt;

&lt;p&gt;Happy coding!&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>database</category>
      <category>python</category>
    </item>
  </channel>
</rss>
