A practical guide for students โ from AI-assisted coding to live deployment
Claude Code is an AI coding assistant that lives in your terminal. It reads your codebase, writes code, runs commands, and helps you ship faster.
Talk to Claude directly from your project folder using the claude command.
Claude reads your files, understands context, and makes changes across multiple files at once.
Claude can run terminal commands, install packages, run tests, and fix errors automatically.
npm install -g @anthropic-ai/claude-code
claude
cd your-project
claude
claudeStart interactive session/helpShow all commands/clearClear conversation/compactSummarise contextclaude "fix this bug"One-shot taskCloudflare Pages is a free hosting platform that deploys your site to a global CDN in seconds โ connected directly to your GitHub repo.
Unlimited free deployments, custom domains, and HTTPS included at no cost.
Your site is served from 300+ data centres worldwide โ blazing fast everywhere.
Push to GitHub and your site deploys automatically. Every PR gets a preview URL.
/*.pages.dev URL instantlyname = "ebrightv2"
compatibility_date = "2024-01-01"
pages_build_output_dir = "."
Automate your deploy workflow so every commit, push, and PR triggers a live preview โ and merging to main updates production automatically.
git add .
git commit -m "feat: add new section"
git push origin your-branch-name
ebrightv2-askbard.pages.dev automaticallyname = "ebrightv2"
compatibility_date = "2024-01-01"
pages_build_output_dir = "."
name: Deploy to Cloudflare Pages
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Deploy to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ebrightv2
directory: .
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
CLOUDFLARE_API_TOKEN โ create at dash.cloudflare.com โ My Profile โ API Tokens โ Create Token โ "Edit Cloudflare Workers" templateCLOUDFLARE_ACCOUNT_ID โ found on the right sidebar of your Cloudflare dashboard homeOfficial documentation and guides to go deeper.
Official documentation, commands, and best practices.
Deployment guides, custom domains, environment variables.
Workflow syntax, triggers, jobs, and secrets management.
CLI reference for deploying to Cloudflare from the terminal.