Debugging DNS Resolution for rubenflamshepherd.com Domain
269 messages · Page 10 of 14
Tool: Bash
$ source ~/.zshrc && echo "Token length: ${#VERCEL_API_KEY}"Tool: Bash
$ source ~/.zshrc && curl -s "https://api.vercel.com/v9/projects" -H "Authorization: Bearer ${VERCEL_API_KEY}" | jq .Tool: Bash
$ source ~/.zshrc && export VERCEL_API_KEY && curl -s "https://api.vercel.com/v9/projects" -H "Authorization: Bearer $VERCEL_API_KEY" 2>&1Found it. Let me get the project details.
Tool: Bash
$ source ~/.zshrc && export VERCEL_API_KEY && curl -s "https://api.vercel.com/v9/projects" -H "Authorization: Bearer $VERCEL_API_KEY" | jq '.projects[] | {name, id}'Tool: Bash
$ source ~/.zshrc && export VERCEL_API_KEY && curl -s "https://api.vercel.com/v9/projects" -H "Authorization: Bearer $VERCEL_API_KEY" > /tmp/vercel_projects.json && jq '.projects[] | {name, id}' /tmp/vercel_projects.jsonFound `personal-website` project. I'll connect `rubenflamshepherd.com` to it.
Tool: Bash
$ source ~/.zshrc && export VERCEL_API_KEY && curl -s -X POST "https://api.vercel.com/v10/projects/prj_HRQM3xaCGDBurVywa2PDaXsSlc14/domains" \
-H "Authorization: Bearer $VERCEL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "rubenflamshepherd.com"}' > /tmp/vercel_domain.json && jq . /tmp/vercel_domain.json