<?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: TechCrafted</title>
    <description>The latest articles on DEV Community by TechCrafted (@techcrafted_28).</description>
    <link>https://dev.to/techcrafted_28</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%2F4068134%2F19af483a-35d6-4e88-afa2-183d1d8a773e.png</url>
      <title>DEV Community: TechCrafted</title>
      <link>https://dev.to/techcrafted_28</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/techcrafted_28"/>
    <language>en</language>
    <item>
      <title>Deploy a FiveM Server With Claude AI (Linux + Windows, Under 15 Min)</title>
      <dc:creator>TechCrafted</dc:creator>
      <pubDate>Fri, 07 Aug 2026 23:02:58 +0000</pubDate>
      <link>https://dev.to/techcrafted_28/deploy-a-fivem-server-with-claude-ai-linux-windows-under-15-min-4j1d</link>
      <guid>https://dev.to/techcrafted_28/deploy-a-fivem-server-with-claude-ai-linux-windows-under-15-min-4j1d</guid>
      <description>&lt;p&gt;Setting up a FiveM server the "normal" way means reading 50 forum posts, copy-pasting commands you don't understand, and spending hours debugging errors nobody explains properly. There's a better way.&lt;/p&gt;

&lt;p&gt;In this guide I'll show you how to use Claude Code to deploy a complete FiveM server — every command, every config file, and even the error fixes — in under 15 minutes. Both Linux and Windows are covered.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What you need&lt;/strong&gt;&lt;br&gt;
Before you start, make sure you have:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A VPS with at least 4 GB RAM, 2 CPU cores, and 50 GB SSD (Vultr and DigitalOcean both work)&lt;/li&gt;
&lt;li&gt;Ubuntu 22.04 LTS (Linux) or Windows Server 2022 (Windows)&lt;/li&gt;
&lt;li&gt;Root SSH access (Linux) or RDP access (Windows)&lt;/li&gt;
&lt;li&gt;Ports 30120 TCP/UDP (FiveM connections) and 40120 TCP (txAdmin panel) open&lt;/li&gt;
&lt;li&gt;A FiveM license key from keymaster.fivem.net&lt;/li&gt;
&lt;li&gt;Claude Code installed&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;⚠️ The most common mistake: forgetting to open ports 30120 and 40120. If your server never becomes reachable, this is almost always why.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Linux path (Ubuntu 22.04)&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Connect to your VPS via SSH&lt;/li&gt;
&lt;li&gt;Open Claude Code and simply tell it:
&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;install &lt;/span&gt;FiveM server on this Ubuntu VPS, use /home/fivem/server as the directory
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Claude runs apt-get update automatically, installs the dependencies (lib32gcc, curl, wget, xz-utils), and downloads the latest FiveM Linux artifact directly from the official runtime URL — no hunting for the right version.&lt;/p&gt;

&lt;p&gt;It then:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sets correct file permissions&lt;/li&gt;
&lt;li&gt;Creates the server directory structure&lt;/li&gt;
&lt;li&gt;Prompts you for your license key from keymaster.fivem.net&lt;/li&gt;
&lt;li&gt;Writes the complete server.cfg with perfect syntax&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The Windows path (Server 2022)&lt;/strong&gt;&lt;br&gt;
On Windows, Claude switches to PowerShell and does the same work with different commands:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Creates C:\FiveMServer&lt;/li&gt;
&lt;li&gt;Downloads the artifact with Invoke-WebRequest&lt;/li&gt;
&lt;li&gt;Extracts with Expand-Archive&lt;/li&gt;
&lt;li&gt;Configures Windows Firewall automatically with netsh — opening TCP/UDP 30120 and TCP 40120. No clicking through firewall menus, no missed rules&lt;/li&gt;
&lt;li&gt;Creates a scheduled task so your server auto-restarts on reboot&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The server.cfg — where most beginners fail&lt;/strong&gt;&lt;br&gt;
Wrong syntax, wrong resource order, missing endpoint lines, invalid license key format — Claude writes it correctly the first time: your license key, server name, max players, all four endpoints, and default resources.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Managing with txAdmin&lt;/strong&gt;&lt;br&gt;
Once running, open your browser and go to &lt;a href="http://YOUR-SERVER-IP:40120" rel="noopener noreferrer"&gt;http://YOUR-SERVER-IP:40120&lt;/a&gt;. You get a full web dashboard with player management, server console, resource management, and restart controls — from any browser, anywhere.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fixing errors the fast way&lt;/strong&gt;&lt;br&gt;
If something breaks, paste the full error log into Claude (not just the last line). It reads it, identifies the exact cause, and fixes it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;License key not valid → Claude explains the keymaster IP issue and fixes the config&lt;/li&gt;
&lt;li&gt;Port 30120 in use → Claude finds the blocker and kills it&lt;/li&gt;
&lt;li&gt;Missing resource dependency → Claude adds it to server.cfg automatically&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What used to take hours of forum searching now takes 30 seconds.Watch the full walkthrough below (Linux + Windows, step by step):&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/N7p9we88Zw0"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Five steps, 15 minutes, and your FiveM server is live — on Linux or Windows. Claude handles every command, every config, and every error. You just give the instructions.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>devops</category>
      <category>gamedev</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>How to Connect Claude AI to Your Project (Step-by-Step Guide)</title>
      <dc:creator>TechCrafted</dc:creator>
      <pubDate>Fri, 07 Aug 2026 22:44:08 +0000</pubDate>
      <link>https://dev.to/techcrafted_28/how-to-connect-claude-ai-to-your-project-step-by-step-guide-9ko</link>
      <guid>https://dev.to/techcrafted_28/how-to-connect-claude-ai-to-your-project-step-by-step-guide-9ko</guid>
      <description>&lt;p&gt;If you're trying to integrate AI into your workflow, getting your environment set up is the hardest part. Here is the exact configuration I use&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"revit"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"node"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"path/to/revit-server.js"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you want to see me build this live and walk through every line of code, I recorded a full video walkthrough here:&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/d_WSl1z7Aa0"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
