Choorai

60분 완주 챌린지

Step 1/6

0%
Estimated time: 60 min

Step 1: Preparation

It's perfectly fine if you have zero coding experience. With the help of AI, let's deploy your first web service in 60 minutes. In this step, we'll prepare the necessary accounts and tools.

TL;DR (5-line summary)

  • Create GitHub and Cloudflare accounts (free)
  • Install Antigravity or VS Code
  • Install Node.js
  • Learn basic terminal usage
  • Prepare an AI chat (ChatGPT, Claude, etc.)

Terms to Know Before You Start

  • Frontend: The UI users see and interact with.
  • Backend: The server side that handles logic and data.
  • API: The contract used by frontend and backend to communicate.
  • Deploy: Publishing your app so people can access it on the internet.

1Set Up Required Accounts

Both services below are completely free. You can get started without registering a credit card.

Term Tip: GitHub / Cloudflare

  • Git: A tool that tracks code history. GitHub is the cloud service that hosts Git repositories.
  • Repository (Repo): A place containing project files and their change history.
  • DNS: A system that maps domain names to real server addresses.
  • Deep dive: Git Basics, DNS Basics

2Install Development Tools

Code Editor

Install one of the following. We recommend Antigravity (free + built-in Gemini AI).

Install Node.js

This is the JavaScript runtime environment. Install the LTS version.

Install Python

Used for backend development. Install Python 3.10 or later.

Verify Installation

After installation, verify with the following commands in your terminal:

Terminal
node --version
npm --version
python3 --version

3Prepare an AI Assistant

This tutorial actively leverages AI assistance. Use one of the following:

  • ChatGPT (free/paid)
  • Claude (free/paid)
  • Antigravity built-in AI (included with the editor, powered by Gemini)

Starter Prompt

복사해서 사용하세요

"I have zero programming experience. I want to build a simple to-do list app with React and FastAPI and deploy it to Cloudflare. Please explain step by step in a very easy way."

Copy and paste the prompt above to your AI. You'll get a friendly, detailed response.

Step 1 Completion Checklist

0/3 완료

Last updated: February 22, 2026 · Version: v0.0.1

Send Feedback

Opens a new issue page with your message.

Open GitHub Issue