mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
update domain
This commit is contained in:
5
.changeset/flat-feet-heal.md
Normal file
5
.changeset/flat-feet-heal.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"create-better-t-stack": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
update domain
|
||||||
@@ -39,7 +39,7 @@ This repository is organized as a monorepo containing:
|
|||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
Visit [better-t-stack.amanv.dev](https://better-t-stack.amanv.dev) for full documentation, guides, and examples.
|
Visit [better-t-stack.dev](https://better-t-stack.dev) for full documentation, guides, and examples.
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
|
|||||||
@@ -43,7 +43,7 @@
|
|||||||
"url": "git+https://github.com/AmanVarshney01/create-better-t-stack.git",
|
"url": "git+https://github.com/AmanVarshney01/create-better-t-stack.git",
|
||||||
"directory": "apps/cli"
|
"directory": "apps/cli"
|
||||||
},
|
},
|
||||||
"homepage": "https://better-t-stack.amanv.dev/",
|
"homepage": "https://better-t-stack.dev/",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsdown",
|
"build": "tsdown",
|
||||||
"dev": "tsdown --watch",
|
"dev": "tsdown --watch",
|
||||||
|
|||||||
@@ -317,7 +317,7 @@ const router = t.router({
|
|||||||
docs: t.procedure
|
docs: t.procedure
|
||||||
.meta({ description: "Open Better-T Stack documentation" })
|
.meta({ description: "Open Better-T Stack documentation" })
|
||||||
.mutation(async () => {
|
.mutation(async () => {
|
||||||
const DOCS_URL = "https://better-t-stack.amanv.dev/docs";
|
const DOCS_URL = "https://better-t-stack.dev/docs";
|
||||||
try {
|
try {
|
||||||
await openUrl(DOCS_URL);
|
await openUrl(DOCS_URL);
|
||||||
log.success(pc.blue("Opened docs in your default browser."));
|
log.success(pc.blue("Opened docs in your default browser."));
|
||||||
@@ -328,7 +328,7 @@ const router = t.router({
|
|||||||
builder: t.procedure
|
builder: t.procedure
|
||||||
.meta({ description: "Open the web-based stack builder" })
|
.meta({ description: "Open the web-based stack builder" })
|
||||||
.mutation(async () => {
|
.mutation(async () => {
|
||||||
const BUILDER_URL = "https://better-t-stack.amanv.dev/new";
|
const BUILDER_URL = "https://better-t-stack.dev/new";
|
||||||
try {
|
try {
|
||||||
await openUrl(BUILDER_URL);
|
await openUrl(BUILDER_URL);
|
||||||
log.success(pc.blue("Opened builder in your default browser."));
|
log.success(pc.blue("Opened builder in your default browser."));
|
||||||
|
|||||||
@@ -44,4 +44,4 @@ To learn more about the technologies used in this website:
|
|||||||
|
|
||||||
- [Next.js Documentation](https://nextjs.org/docs) - Next.js features and API
|
- [Next.js Documentation](https://nextjs.org/docs) - Next.js features and API
|
||||||
- [Fumadocs](https://fumadocs.vercel.app) - The documentation framework used
|
- [Fumadocs](https://fumadocs.vercel.app) - The documentation framework used
|
||||||
- [Better-T-Stack](https://better-t-stack.amanv.dev) - Main project site
|
- [Better-T-Stack](https://better-t-stack.dev) - Main project site
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ export const metadata: Metadata = {
|
|||||||
keywords: [
|
keywords: [
|
||||||
"TypeScript",
|
"TypeScript",
|
||||||
"project scaffolding",
|
"project scaffolding",
|
||||||
"biolerplate",
|
"boilerplate",
|
||||||
"type safety",
|
"type safety",
|
||||||
"Drizzle",
|
"Drizzle",
|
||||||
"Prisma",
|
"Prisma",
|
||||||
@@ -46,7 +46,7 @@ export const metadata: Metadata = {
|
|||||||
email: false,
|
email: false,
|
||||||
telephone: false,
|
telephone: false,
|
||||||
},
|
},
|
||||||
metadataBase: new URL("https://better-t-stack.amanv.dev"),
|
metadataBase: new URL("https://better-t-stack.dev"),
|
||||||
alternates: {
|
alternates: {
|
||||||
canonical: "/",
|
canonical: "/",
|
||||||
},
|
},
|
||||||
@@ -54,7 +54,7 @@ export const metadata: Metadata = {
|
|||||||
title: "Better-T Stack",
|
title: "Better-T Stack",
|
||||||
description:
|
description:
|
||||||
"A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
|
"A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
|
||||||
url: "https://better-t-stack.amanv.dev",
|
url: "https://better-t-stack.dev",
|
||||||
siteName: "Better-T Stack",
|
siteName: "Better-T Stack",
|
||||||
images: [
|
images: [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -8,6 +8,6 @@ export default function robots(): MetadataRoute.Robots {
|
|||||||
allow: "/",
|
allow: "/",
|
||||||
disallow: "/private/",
|
disallow: "/private/",
|
||||||
},
|
},
|
||||||
sitemap: "https://better-t-stack.amanv.dev/sitemap.xml",
|
sitemap: "https://better-t-stack.dev/sitemap.xml",
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,19 +4,19 @@ import type { MetadataRoute } from "next";
|
|||||||
export default function sitemap(): MetadataRoute.Sitemap {
|
export default function sitemap(): MetadataRoute.Sitemap {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
url: "https://better-t-stack.amanv.dev/",
|
url: "https://better-t-stack.dev/",
|
||||||
lastModified: new Date(),
|
lastModified: new Date(),
|
||||||
changeFrequency: "weekly",
|
changeFrequency: "weekly",
|
||||||
priority: 1,
|
priority: 1,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
url: "https://better-t-stack.amanv.dev/new",
|
url: "https://better-t-stack.dev/new",
|
||||||
lastModified: new Date(),
|
lastModified: new Date(),
|
||||||
changeFrequency: "weekly",
|
changeFrequency: "weekly",
|
||||||
priority: 0.8,
|
priority: 0.8,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
url: "https://better-t-stack.amanv.dev/docs",
|
url: "https://better-t-stack.dev/docs",
|
||||||
lastModified: new Date(),
|
lastModified: new Date(),
|
||||||
changeFrequency: "weekly",
|
changeFrequency: "weekly",
|
||||||
priority: 0.5,
|
priority: 0.5,
|
||||||
|
|||||||
Reference in New Issue
Block a user