Skip to content

Commit 3572666

Browse files
authored
update all instances of agentsmith.app to agentsmith.dev (#12)
1 parent d9d6ad0 commit 3572666

File tree

16 files changed

+22
-22
lines changed

16 files changed

+22
-22
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
> [!WARNING]
2-
> Agentsmith is currently in alpha. Changes are pushed frequently and may include breaking changes. If you encounter any issues, please reach out to support@agentsmith.app for assistance.
2+
> Agentsmith is currently in alpha. Changes are pushed frequently and may include breaking changes. If you encounter any issues, please reach out to support@agentsmith.dev for assistance.
33
44
# Agentsmith
55

__tests__/ts-sdk/agentsmith/agentsmith.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ export type Globals = {
318318
gitHubUrl: 'https://github.com/chad-syntax/agentsmith';
319319
supportUrl: 'https://agentsmith.app/support';
320320
companyName: 'Agentsmith';
321-
supportEmail: 'support@agentsmith.app';
321+
supportEmail: 'support@agentsmith.dev';
322322
};
323323

324324
export type Agency = {

__tests__/ts-sdk/agentsmith/globals.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"gitHubUrl": "https://github.com/chad-syntax/agentsmith",
33
"supportUrl": "https://agentsmith.app/support",
44
"companyName": "Agentsmith",
5-
"supportEmail": "support@agentsmith.app"
6-
}
5+
"supportEmail": "support@agentsmith.dev"
6+
}

content/docs/core-concepts/self-hosting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Agentsmith can be self-hosted on your own infrastructure, giving you complete co
1616
<AlertDescription>
1717
Agentsmith is currently in alpha. Self-hosting documentation and support will be more
1818
comprehensive as we move out of the alpha phase. Railway template support is planned for easier
19-
deployment. If you encounter any issues, please reach out to support@agentsmith.app for
19+
deployment. If you encounter any issues, please reach out to support@agentsmith.dev for
2020
assistance.
2121
</AlertDescription>
2222
</Alert>

content/docs/sdk/reference.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The main client for interacting with the Agentsmith API.
2929
description:
3030
'The root URL for the Agentsmith API. Can be overridden for self-hosting purposes.',
3131
type: 'string',
32-
default: 'https://agentsmith.app',
32+
default: 'https://agentsmith.dev',
3333
},
3434
supabaseUrl: {
3535
description:

sdk-prod-git-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
source ./sdk-release-base.sh
55

66
# Environment-specific configuration
7-
NEXT_PUBLIC_SITE_URL="https://agentsmith.app"
7+
NEXT_PUBLIC_SITE_URL="https://agentsmith.dev"
88
NEXT_PUBLIC_SUPABASE_URL="https://jcnpgqhjaoppfhbkcnpv.supabase.co"
99
NEXT_PUBLIC_SUPABASE_ANON_KEY="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImpjbnBncWhqYW9wcGZoYmtjbnB2Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MzgwMzA2OTUsImV4cCI6MjA1MzYwNjY5NX0.n_gN9QTv9qY7FlA8wyoww8Nd4PFv9EMiXiDgGOQ2Axw"
1010

sdk-stage-git-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
source ./sdk-release-base.sh
55

66
# Environment-specific configuration
7-
NEXT_PUBLIC_SITE_URL="https://staging.agentsmith.app"
7+
NEXT_PUBLIC_SITE_URL="https://staging.agentsmith.dev"
88
NEXT_PUBLIC_SUPABASE_URL="https://ehpaperavkeicrwhvsbx.supabase.co"
99
NEXT_PUBLIC_SUPABASE_ANON_KEY="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImVocGFwZXJhdmtlaWNyd2h2c2J4Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NDc3NTA3NTQsImV4cCI6MjA2MzMyNjc1NH0.rntsQRcyVBb9UTahY4LSq5o4vuUSYfZS6h4NUK8qme0"
1010

src/app/sitemap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { source } from '@/lib/docs/source';
22
import type { MetadataRoute } from 'next';
33

4-
const baseUrl = process.env.NEXT_PUBLIC_SITE_URL ?? 'https://agentsmith.app';
4+
const baseUrl = process.env.NEXT_PUBLIC_SITE_URL ?? 'https://agentsmith.dev';
55

66
export default function sitemap(): MetadataRoute.Sitemap {
77
const docsPages = source.getPages();

src/components/studio-give-feedback.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const StudioGiveFeedback = () => {
3434
If your feedback is more suited to a private conversation or not appropriate for the
3535
public roadmap, please email{' '}
3636
<a className="underline" href={routes.emails.alex}>
37-
alex@agentsmith.app
37+
alex@agentsmith.dev
3838
</a>
3939
.
4040
</AlertDialogDescription>

src/constants/structured-json.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import packageJson from '../../package.json';
44
// @ts-ignore
55
import gitHandoffScreenshot from '@/assets/landing-page-video-covers/git-handoff.jpg';
66

7-
const siteUrl = process.env.NEXT_PUBLIC_SITE_URL || 'https://agentsmith.app';
7+
const siteUrl = process.env.NEXT_PUBLIC_SITE_URL || 'https://agentsmith.dev';
88

99
const offersFromPricing = pricingPlans.flatMap((plan) => {
1010
const planOffers = [];

0 commit comments

Comments
 (0)