Skip to content

Commit 9b81a52

Browse files
authored
Merge pull request #55 from tinybirdco/rename
rename
2 parents 8d02570 + dbdf063 commit 9b81a52

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
# Tinynest: The Ultimate Dev Stack Analytics Dashboard
2-
Tinynest is an open source utility built with love by Tinybird. Capture and analyze data from over a dozen common dev tools, from Vercel to Stripe to Auth0 and more, with just a few lines of code.
1+
# Dev stack analytics template
2+
The dev stack analytics template is an open source utility built with love by Tinybird. Capture and analyze data from over a dozen common dev tools, from Vercel to Stripe to Auth0 and more, with just a few lines of code.
33

44
![image](https://github.com/user-attachments/assets/32f24c18-a815-44f5-8a37-40e2d899e866)
55

66
## Get Started
7-
To start using Tinynest, you just need to deploy the data project to Tinybird, configure some webhooks, and fork the Next.js app (or use the public app at https://tinynest.tinybird.co with your Tinybird token).
7+
To start using Dev Stack Analytics, you just need to deploy the data project to Tinybird, configure some webhooks, and fork the Next.js app (or use the public app at https://dsat.tinybird.app with your Tinybird token).
88

99
### Deploy the Tinybird data project
1010
You can deploy the entire Tinybird project to your Tinybird account by clicking the button below. If you don't have a Tinybird account you can [signup for free](https://www.tinybird.co/signup).
1111

1212
<p align="left">
13-
<a href="https://app.tinybird.co?starter_kit=https://github.com/tinybirdco/tinynest/tinybird">
13+
<a href="https://app.tinybird.co?starter_kit=https://github.com/tinybirdco/dev-stack-analytics-template/tinybird">
1414
<img width="200" src="https://img.shields.io/badge/Deploy%20to-Tinybird-25283d?style=flat&labelColor=25283d&color=27f795&logo=data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTAwIDUwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNTAwIDQyLjhsLTE1Ni4xLTQyLjgtNTQuOSAxMjIuN3pNMzUwLjcgMzQ1LjRsLTE0Mi45LTUxLjEtODMuOSAyMDUuN3oiIGZpbGw9IiNmZmYiIG9wYWNpdHk9Ii42Ii8+PHBhdGggZD0iTTAgMjE5LjlsMzUwLjcgMTI1LjUgNTcuNS0yNjguMnoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=" />
1515
</a>
1616
</p>
1717

1818
### Configure the webhooks
19-
You'll need to configure webhooks from the tools in your stack to send data to Tinybird. Find guides below on how to do that for each tool in the Tinynest.
19+
You'll need to configure webhooks from the tools in your stack to send data to Tinybird. Find guides below on how to do that for each tool in the template.
2020

2121
- [Auth0 Log Streams](https://www.tinybird.co/docs/get-data-in/guides/ingest-auth0-logs)
2222
- [Clerk](https://www.tinybird.co/docs/get-data-in/guides/ingest-from-clerk)

TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Fork the GitHub repository and deploy the data project to Tinybird.
66

77
## Set up the dashboard
88

9-
Deploy the dashboard to Vercel or use the hosted dashboard at https://tinynest.tinybird.co/ using the Workspace admin [token](https://app.tinybird.co/tokens).
9+
Deploy the dashboard to Vercel or use the hosted dashboard at https://dsat.tinybird.co/ using the Workspace admin [token](https://app.tinybird.co/tokens).
1010

11-
Configure webhooks for the services you want to ingest. See instructions in the [README](https://github.com/tinybirdco/tinynest/blob/main/README.md).
11+
Configure webhooks for the services you want to ingest. See instructions in the [README](https://github.com/tinybirdco/dev-stack-analytics-template/blob/main/README.md).

apps/web/public/content/gitlab.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Check the status of the integration from the **Log** tab in the Tinybird `gitlab
2626

2727
* [Events API](https://tinybird.co/docs/get-data-in/ingest-apis/events-api)
2828
* [GitLab Webhooks](https://docs.gitlab.com/ee/user/project/integrations/webhook_events.html)
29-
* [Tinybird Data Sources](https://github.com/tinybirdco/tinynest/blob/main/tinybird/datasources/)
29+
* [Tinybird Data Sources](https://github.com/tinybirdco/dev-stack-analytics-template/blob/main/tinybird/datasources/)

apps/web/src/app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const geistMono = Geist_Mono({
1515
});
1616

1717
export const metadata: Metadata = {
18-
title: "Tinynest",
19-
description: "Analyze your SaaS stack",
18+
title: "Dev stack analytics template",
19+
description: "Analyze your dev stack",
2020
};
2121

2222
export default function RootLayout({

apps/web/src/app/page.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function HomeContent() {
1212
return (
1313
<div className="py-6">
1414
<div className="space-y-4">
15-
<h1 className="text-2xl font-bold">Welcome to Tinynest</h1>
15+
<h1 className="text-2xl font-bold">Dev stack analytics template</h1>
1616
{token && (
1717
<>
1818
<p className="text-muted-foreground">
@@ -27,19 +27,19 @@ function HomeContent() {
2727
)}
2828
{!token && (
2929
<div className="prose">
30-
<p>Tinynest lets you see what&apos;s going on in your SaaS stack.</p>
30+
<p>The dev stack analytics template (DSAT) lets you see what&apos;s going on in your SaaS stack.</p>
3131
<p>Modern products use a nest of SaaS tools as building blocks, like Tinybird for Analytics, Clerk for Auth, Stripe for Payments, and more.</p>
3232
<p>This lets you focus on building your product and delighting your users.</p>
3333
<p>But it can also make it hard to see the complete picture of how your users are interacting with your product.</p>
34-
<p>Tinynest helps you to bring that data together in one place.</p>
34+
<p>DSAT helps you to bring that data together in one place.</p>
3535
<TokenPrompt />
3636

3737
<h2>New here? Deploy now</h2>
3838
<p>
3939
Deploy a new project to Tinybird to get started
4040
</p>
4141
<Link
42-
href="https://app.tinybird.co/?starter_kit=https://github.com/tinybirdco/tinynest/tinybird"
42+
href="https://app.tinybird.co/?starter_kit=https://github.com/tinybirdco/dev-stack-analytics-template/tinybird"
4343
target="_blank"
4444
className="inline-flex items-center gap-1 rounded-md bg-primary px-3 py-2 text-sm font-semibold text-primary-foreground shadow hover:bg-primary/90"
4545
>

apps/web/src/components/sidebar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function AppCard({
3737
className="block"
3838
href={`/${app.id}${token ? `?token=${token}` : ''}`}
3939
>
40-
<Card className={`h-[42px] hover:bg-accent mb-2 ${stateColors[state]} ${isActive ? 'bg-accent' : ''} ${isCollapsed ? 'w-10' : ''}`}>
40+
<Card className={`h-[42px] hover:bg-accent mb-2 ${stateColors[state]} ${isActive ? 'bg-accent' : ''} ${isCollapsed ? 'w-auto' : ''}`}>
4141
<div className={`flex items-center justify-between h-full ${isCollapsed ? 'px-2' : 'px-3'} w-full`}>
4242
<div className={`flex items-center gap-3 min-w-0 ${isCollapsed && 'mx-auto'}`}>
4343
{app.icon_url && <Image src={app.icon_url} width={16} height={16} alt={app.name} className="flex-shrink-0" />}
@@ -60,7 +60,7 @@ export function Sidebar({ activeAppId }: { activeAppId?: string }) {
6060
<Suspense fallback={
6161
<div className="w-64 border-r h-screen">
6262
<div className="p-4 border-b">
63-
<div className="text-xl font-bold">tinynest</div>
63+
<div className="text-xl font-bold">Dev stack analytics template</div>
6464
</div>
6565
<div className="h-[calc(100vh-65px)] px-4 py-6">
6666
<div className="flex items-center justify-center">
@@ -178,7 +178,7 @@ function SidebarInner({
178178
href={token ? `/?token=${token}` : '/'}
179179
className={`font-bold hover:text-primary transition-colors ${isCollapsed ? 'text-lg' : 'text-xl'}`}
180180
>
181-
{isCollapsed ? 'tn' : 'tinynest'}
181+
{isCollapsed ? 'dsat' : 'Dev stack analytics template'}
182182
</Link>
183183
</div>
184184

0 commit comments

Comments
 (0)