<?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: Kazuki 🇯🇵</title>
    <description>The latest articles on DEV Community by Kazuki 🇯🇵 (@devkazuki).</description>
    <link>https://dev.to/devkazuki</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%2F966542%2F0c75f3b3-e6fb-4c6b-ba20-969b51630c63.jpg</url>
      <title>DEV Community: Kazuki 🇯🇵</title>
      <link>https://dev.to/devkazuki</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/devkazuki"/>
    <language>en</language>
    <item>
      <title>Migrate from render to Supabase</title>
      <dc:creator>Kazuki 🇯🇵</dc:creator>
      <pubDate>Sun, 06 Nov 2022 05:35:14 +0000</pubDate>
      <link>https://dev.to/devkazuki/migrate-from-render-to-supabase-2en</link>
      <guid>https://dev.to/devkazuki/migrate-from-render-to-supabase-2en</guid>
      <description>&lt;p&gt;I used PostgreSQL from render.com and I paid $7 per month for Starter plan.&lt;br&gt;
This DB was for own project.&lt;br&gt;
There was no revenue and It was in the red.&lt;/p&gt;

&lt;p&gt;So, I migrate from render to Supabase.&lt;br&gt;
Because Supabase's free plan was sufficient.&lt;br&gt;
Nothing was difficult, it was simple.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Execute pg_dump in redner's DB&lt;br&gt;
Execute the following code on the command line&lt;br&gt;
&lt;code&gt;pg_dump --clean --if-exists --quote-all-identifiers \&lt;br&gt;
-h $RENDER_HOST -U $RENDER_USER -d $RENDER_DATABASE \&lt;br&gt;
--no-owner --no-privileges &amp;gt; render_dump.sql&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Import dump files into Supabase's DB&lt;br&gt;
Execute the following code on the command line&lt;br&gt;
&lt;code&gt;psql -h $SUPABASE_HOST -U postgres -f redner_dump.sql&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Change the Web Application's DB URI to that of Supabase&lt;br&gt;
The URI of Supabase can be found in&lt;br&gt;
"Project Settings" → "Database" → "Connection string".&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
  </channel>
</rss>
