惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MongoDB | Blog
MongoDB | Blog
B
Blog
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
博客园 - Franky
V
V2EX
IT之家
IT之家
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
F
Fortinet All Blogs
I
InfoQ
云风的 BLOG
云风的 BLOG
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
Microsoft Security Blog
Microsoft Security Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building a website with Replit and Vercel
absterellio · 2026-04-23 · via DEV Community

absterellio

I recently built a personal website (absterellio.com) to aggregate the various projects I've worked on as well as to compile my information in one location. (Also, for fun) :). With AI tools and simple hosting platforms it's pretty frictionless to spin up a website. In particular, with agentic AI tools such as Replit, building a website is as simple as it's ever been.

I wanted to write a quick guide to outline the process I followed. I chose Vercel and Replit because I'd heard about both and wanted to give them a shot. I also did a quick Reddit search and both received some praise on their reliability and simplicity.

Here's what I did:

  1. Bought my domain (absterellio.com). I used CloudFlare but any domain registrar (Namecheap, GoDaddy, etc.) will do the trick.
  2. Asked Replit to build me a personal website (literally). This was the most streamlined part of the process. I selected "website" as the project type and chatted with the agent until I was happy with the layout. If you stick with the free plan and credits, you can get a simple site without paying. Here's a preview of the Replit interface when beginning a project: replit ui This is where having some programming knowledge is helpful. Replit allows you to edit the code as well as chat with the agent to build. I was able to save some credits when refining by editing the code myself. I relied on the agent for the more tedious tasks so that I didn't surpass the free token limit. replit code tree

I was impressed by how easy Replit made it to integrate API's into the code, providing instructions every step of the way and clearly outlining where and how to generate the necessary keys while abstracting the secret fetching and management. For example, I wanted to call the YouTube API to display videos, and just had to provide the API key so Replit could store the secret and integrate it into the code.

youtube api replit

  1. For the next step, I needed to choose where to host the website. Replit offers backend, hosting & deployment services on its free tier. However, I wanted to use my own custom domain which Replit's free tier does not support. I decided to use Vercel whose hobby tier supports one free custom domain.

The next step to port this site to Vercel was to download the generated app from Replit, clean it up locally with Claude code, and push to a new repo in GitHub.

zip download

Vercel made it simple to import the code and change the domain. I created a new project and authenticated with GitHub. Once GitHub is linked I was able to choose the repo I wanted to import.

github link

I was prompted to authenticate with CloudFlare to show domain ownership and my domain was linked.

domain change

I began the deployment process and after a few failed deploys and subsequent tweaks to the code, the site was up and running. Vercel's interface provides simple CI/CD, observability, and other insights.

observability

There are many features to both Vercel and Replit which I did not explore, as my initial goal was to minimize cost and spin up a site quickly. Looking forward to playing around more in the future.

Thanks for reading!