Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix template links to point to new doc pages #623

Merged
merged 2 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/create/templates/hello-drizzle/src/operations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class Hello {
<h1 class="text-3xl font-semibold mb-4">Welcome to DBOS!</h1>
<p class="mt-8 mb-8">` + message + `</p>
<p class="mb-2">
This is the Drizzle quickstart template app. Read the documentation for it <a href="https://docs.dbos.dev/tutorials/using-drizzle" class="text-blue-600 hover:underline">here</a>.
This is the Drizzle quickstart template app. Read the documentation for it <a href="https://docs.dbos.dev/typescript/tutorials/using-drizzle" class="text-blue-600 hover:underline">here</a>.
</p>
</body>
</html>`;
Expand Down
2 changes: 1 addition & 1 deletion packages/create/templates/hello-prisma/src/operations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class Hello {
<h1 class="text-3xl font-semibold mb-4">Welcome to DBOS!</h1>
<p class="mt-8 mb-8">` + message + `</p>
<p class="mb-2">
This is the Prisma quickstart template app. Read the documentation for it <a href="https://docs.dbos.dev/tutorials/using-prisma" class="text-blue-600 hover:underline">here</a>.
This is the Prisma quickstart template app. Read the documentation for it <a href="https://docs.dbos.dev/typescript/tutorials/using-prisma" class="text-blue-600 hover:underline">here</a>.
</p>
</body>
</html>`;
Expand Down
2 changes: 1 addition & 1 deletion packages/create/templates/hello-typeorm/src/operations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class Hello {
<h1 class="text-3xl font-semibold mb-4">Welcome to DBOS!</h1>
<p class="mt-8 mb-8">` + message + `</p>
<p class="mb-2">
This is the TypeORM quickstart template app. Read the documentation for it <a href="https://docs.dbos.dev/tutorials/using-typeorm" class="text-blue-600 hover:underline">here</a>.
This is the TypeORM quickstart template app. Read the documentation for it <a href="https://docs.dbos.dev/typescript/tutorials/using-typeorm" class="text-blue-600 hover:underline">here</a>.
</p>
</body>
</html>`;
Expand Down
4 changes: 2 additions & 2 deletions packages/create/templates/hello/src/operations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ export class Hello {
<p class="mt-8 mb-8">` + message + `</p>
<p class="mb-2">
To learn how to run this app yourself, visit our
<a href="https://docs.dbos.dev/getting-started/quickstart" class="text-blue-600 hover:underline">Quickstart</a>.
<a href="https://docs.dbos.dev/quickstart?language=typescript" class="text-blue-600 hover:underline">Quickstart</a>.
</p><p class="mb-2">
Then, to learn how to build crashproof apps, continue to our
<a href="https://docs.dbos.dev/getting-started/quickstart-programming" class="text-blue-600 hover:underline">Programming Guide</a>.<br>
<a href="https://docs.dbos.dev/typescript/programming-guide" class="text-blue-600 hover:underline">Programming Guide</a>.<br>
</p>
</body>
</html>`;
Expand Down
Loading