Skip to content

Add bazaarko.json with domain owner and record#32415

Closed
Osama101973 wants to merge 3 commits intois-a-dev:mainfrom
Osama101973:main
Closed

Add bazaarko.json with domain owner and record#32415
Osama101973 wants to merge 3 commits intois-a-dev:mainfrom
Osama101973:main

Conversation

@Osama101973
Copy link
Copy Markdown

@Osama101973 Osama101973 commented Feb 5, 2026

Requirements

  • I agree to the Terms of Service.
  • My file is following the domain structure.
  • My website is reachable and completed.
  • My website is software development related.
  • My website is not for commercial use.
  • I have provided contact information in the owner key.
  • I have provided a preview of my website below.

Website Preview

@Osama101973 Osama101973 requested a review from a team as a code owner February 5, 2026 14:26
@alexgamingstudio
Copy link
Copy Markdown
Contributor

Hi! The tests failed because you wrote record instead of records (plural).

I hope I was able to Help you 😊

Copy link
Copy Markdown
Author

@Osama101973 Osama101973 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Finish it

@Osama101973 Osama101973 marked this pull request as draft February 5, 2026 20:45
@alexgamingstudio
Copy link
Copy Markdown
Contributor

alexgamingstudio commented Feb 6, 2026

Sorry, try this:

{
  "owner": {
    "username": "Osama101973",
    "email": "osamatawfikelshimy10@gmail.com"
  },
  "proxied": true,
  "records": {
    "A": ["76.76.21.21"],
    "CNAME": {
      "www": "cname.vercel-dns.com"
    }
  }
}

I added "proxied": true so that the tests no longer fail.
I hope I was able to Help you 😊

@10xdev4u-alt
Copy link
Copy Markdown
Contributor

Hey @Osama101973! 👋 Looks like the latest update is hitting some DNS validation snags. There are two main issues causing the tests to fail: CNAME Conflict: You can't have both an A record and a CNAME at the root. Since you're using Vercel, you usually choose one or the other. Formatting Error: The test suite is crashing because it doesn't recognize the nested object for the CNAME. The Fix: If you want to use Vercel with your root domain, try updating your bazaarko.json to this cleaner version:

{
  "owner": {
    "username": "Osama101973",
    "email": "osamatawfikelshimy10@gmail.com"
  },
  "proxied": false,
  "records": {
    "A": ["76.76.21.21"]
  }
}

Note: If you specifically need the www subdomain, you should create a separate file for it or stick to the A record for the root which Vercel handles perfectly. Also, I set proxied to false as Vercel handles its own SSL/Edge optimization! Hope this gets the build back to green! ✅

@STICKnoLOGIC
Copy link
Copy Markdown
Member

Closing this PR:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants