Skip to content
Indus LeveL
education it-basics continuous-deployment git-push ai-co-pilot prompting

Session 8: Infinite Updates — Automated Deployments & Your AI Assistant

Learn the power of continuous deployment by updating your live website, and discover how to partner with AI to write new features and fix bugs.

2 min read
Session 8: CD & AI Web Workflow

Welcome to our eighth and final session! You have achieved something remarkable: you have a custom, secure webpage live on the global internet under your own personal domain name.

In this final 45-to-60 minute session, we will lock in your understanding of the professional development loop. You will learn how to make rapid updates to your live site, and how to harness Artificial Intelligence (AI) as your permanent tutor and coding partner for all future projects.


Prerequisites

  • Your laptop connected to the internet.
  • Your Google Antigravity workspace open from Session 3.
  • Your live custom website loaded in another browser tab.

Core Concepts: The Continuous Deployment Power Loop

  • What is the Power Loop? In traditional IT, updating a website involved manually copying files, logging into slow administrative managers, clearing caches, and praying that nothing broke. Today, we use the modern developer's loop:
    Make Change (IDE) ──> Push Commit (Git) ──> Auto-Deploy (Cloudflare)
    You edit the files locally, press save, upload to GitHub, and Cloudflare takes care of the rest automatically.
  • What is AI-Assisted Coding? Writing code is like writing in a foreign language. AI is your perfect translator. It doesn't replace your logic—it handles the syntax and vocabulary, helping you express your ideas in HTML, CSS, or JavaScript.

Step-by-Step Guide

Step 1: Modifying Your Website Files

Let's add a clean, styled pricing table and a footer to your personal webpage.

  1. Open your Google Antigravity tab.
  2. Open your index.html file in the editor pane.
  3. Scroll down to the bottom of the file and locate the end of the content box, right before the closing </div> tag of the .card:
        <!-- We will insert our new section right here! -->
  4. Copy and paste this new pricing list and footer code snippet directly into that spot:
        <!-- New Pricing List Section -->
        <div style="margin-top: 30px; border-top: 1px dashed #3a3a3a; padding-top: 20px;">
            <h3 style="color: #fbbf24; margin-bottom: 10px;">Our Services & Rates</h3>
            <ul style="list-style: none; padding: 0; text-align: left; max-width: 300px; margin: 0 auto; color: #d4d4d4;">
                <li style="padding: 6px 0; border-bottom: 1px solid #2a2a2a; display: flex; justify-content: space-between;">
                    <span>City Shuttle (Up to 15km)</span>
                    <strong style="color: #fbbf24;">60 PLN</strong>
                </li>
                <li style="padding: 6px 0; border-bottom: 1px solid #2a2a2a; display: flex; justify-content: space-between;">
                    <span>Airport Transfer</span>
                    <strong style="color: #fbbf24;">120 PLN</strong>
                </li>
                <li style="padding: 6px 0; display: flex; justify-content: space-between;">
                    <span>Custom Inter-City Ride</span>
                    <strong style="color: #fbbf24;">Quote via Email</strong>
                </li>
            </ul>
        </div>

        <!-- Custom Dark Theme Footer -->
        <footer style="margin-top: 30px; font-size: 11px; color: #6b7280; border-top: 1px solid #2e2e2e; padding-top: 15px;">
            &copy; 2026 Waqar Azeem Premium Transport. Powered by LPG Hybrid Technology. All rights reserved.
        </footer>
  1. Save your changes. (In Google Antigravity, changes are saved in the cloud automatically!).
  2. Look at your workspace "Web Preview" panel—you will see the pricing list and custom footer render instantly on your preview page!

Step 2: Triggering the Automated Deployment

Now, let's push this update to the internet. We only need the three basic Git terminal commands we learned in Session 4!

  1. Open the Terminal panel at the bottom of your Google Antigravity workspace.
  2. Add your updated file to the staging launchpad:
    git add index.html
  3. Take a new snapshot checkpoint with a descriptive message:
    git commit -m "Add services pricing list and custom footer"
  4. Push the snapshot to the GitHub cloud:
    git push origin main
  5. Wait for the terminal to print Everything up-to-date or successfully complete the upload.

Step 3: Watching the Live Update

Let's verify how fast Cloudflare deploys our change.

  1. Open your Cloudflare Dashboard tab.
  2. Go to "Workers & Pages" → Click on your my-first-website project.
  3. Under the "Deployments" list, you will see a new active line representing your latest commit message: "Add services pricing list and custom footer". The tag next to it will say Building.
  4. Within 25 seconds, the tag will transform into a green Active bubble!
  5. Now, switch to your custom webpage tab (e.g., waqarrides.com or yourname.eu.org) and refresh the page (Ctrl + F5 or Cmd + Shift + R to clear the cache).
  6. Magic! Your pricing list and footer are now live for the entire world to see!

Step 4: Partnering with AI to Extend Your Site

You are no longer limited by what you know. You can now use AI (like ChatGPT, Gemini, or Claude) to help you build whatever you imagine. Here are a few concrete prompt templates designed for non-technical beginners:

Prompt Example 1: Asking AI to write a new feature

If you want to add a feature but don't know the CSS or HTML tags, ask the AI to write the code and explain where to paste it:

"I am a beginner learning HTML and CSS. I have a simple card-style webpage inside an index.html file. Can you write a CSS styling code block to add a professional 'Light/Dark Theme Toggle Switch' at the top-right corner of my page, and explain step-by-step exactly where to paste it inside my HTML file?"

Prompt Example 2: Asking AI to troubleshoot an error

If something on your webpage looks misaligned or broken, paste your code to the AI and ask it to find the mistake:

"My custom webpage header is supposed to have a golden color (#fbbf24), but it is displaying as a default white. Here is my index.html file: [PASTE YOUR CODE HERE]. Can you inspect it, identify the mistake, write the corrected line, and explain why the original line failed?"

Prompt Example 3: Learning conceptual IT

If you hear a term in a meeting or read it online and don't understand, ask AI to explain it using simple analogies:

"Can you explain what 'SSL Certificates' and 'Cache Clearing' mean to a taxi driver who has zero background in IT, using everyday real-world analogies?"


Graduation Ceremony! 🎓

Let's look back at the incredible progress you have made across these 8 sessions:

  1. Session 1: Getting Started — Opened a text terminal and logged securely into a remote Linux server.
  2. Session 2: Linux Navigation — Navigated the Linux file tree and created directories without a mouse.
  3. Session 3: Google Antigravity Workspace — Set up a cloud IDE (Google Antigravity) and wrote clean HTML and CSS.
  4. Session 4: Git and GitHub — Mastered version control, taking safety snapshots with Git and pushing to GitHub.
  5. Session 5: Obtaining a Domain — Registered a custom domain name (free or paid).
  6. Session 6: DNS and Cloudflare Proxy — Configured DNS Name Servers and activated Cloudflare's security shield.
  7. Session 7: Hosting on Cloudflare Pages — Linked your code to Cloudflare Pages and launched your website live to the public.
  8. Session 8: Infinite Updates & AI Workflow — Completed a rapid live update loop and learned to co-pilot with AI.

You now possess the foundational blueprints of modern web engineering. Keep experimenting, keep pushing new snapshots, and keep asking your AI assistant questions! The internet is yours to build.

Back to Blog
Share:

Follow along

Stay in the loop — new articles, thoughts, and updates.