<?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: Anamika Bajpai</title>
    <description>The latest articles on DEV Community by Anamika Bajpai (@anamika_bajpai_1991).</description>
    <link>https://dev.to/anamika_bajpai_1991</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%2F4000666%2F96a4ae99-2995-4cc4-a214-bfa6aee02d86.jpg</url>
      <title>DEV Community: Anamika Bajpai</title>
      <link>https://dev.to/anamika_bajpai_1991</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/anamika_bajpai_1991"/>
    <language>en</language>
    <item>
      <title>How I built a white-label community platform on AWS Aurora DSQL for #H0Hackathon</title>
      <dc:creator>Anamika Bajpai</dc:creator>
      <pubDate>Wed, 24 Jun 2026 13:29:10 +0000</pubDate>
      <link>https://dev.to/anamika_bajpai_1991/how-i-built-a-white-label-community-platform-on-aws-aurora-dsql-for-h0hackathon-1300</link>
      <guid>https://dev.to/anamika_bajpai_1991/how-i-built-a-white-label-community-platform-on-aws-aurora-dsql-for-h0hackathon-1300</guid>
      <description>&lt;p&gt;I built CommuniQ for the AWS H0 Hackathon — a white-label community platform &lt;br&gt;
powered by Aurora DSQL, the new serverless distributed SQL database from AWS.&lt;/p&gt;

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

&lt;p&gt;Platforms like Circle.so charge $300+/month with no AWS-native option. &lt;br&gt;
I wanted to build something that runs entirely on AWS infrastructure.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;CommuniQ lets any brand launch their own community (like a white-label Discord/Circle.so) &lt;br&gt;
with full multi-tenant isolation. Each community gets its own URL slug, spaces, &lt;br&gt;
threaded posts, and member management.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Aurora DSQL
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Active-active multi-region writes (us-east-1)&lt;/li&gt;
&lt;li&gt;Zero cluster management — fully serverless&lt;/li&gt;
&lt;li&gt;IAM token auth via DsqlSigner — no static passwords stored ever&lt;/li&gt;
&lt;li&gt;Strong consistency across regions&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Technical Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Next.js 16 + NextAuth v5 (beta)&lt;/li&gt;
&lt;li&gt;Prisma 7 with @prisma/adapter-pg (Driver Adapter pattern)&lt;/li&gt;
&lt;li&gt;AWS Aurora DSQL as the primary database&lt;/li&gt;
&lt;li&gt;Deployed on Vercel&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Key Code Pattern
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
typescript
const signer = new DsqlSigner({ hostname: DSQL_HOST, region: "us-east-1" });
const token = await signer.getDbConnectAdminAuthToken();
// token used as PostgreSQL password — rotates automatically

Live Demo
Try it: https://communiq-self.vercel.app

I created this article for the purposes of entering the AWS H0 Hackathon.

#H0Hackathon #Vercel #AuroraSQL #Nextjs #AWSHackathon
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>aws</category>
      <category>database</category>
      <category>serverless</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
