-
Notifications
You must be signed in to change notification settings - Fork 917
fix(blog): seo issue #7783
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
Merged
Merged
fix(blog): seo issue #7783
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
106 changes: 106 additions & 0 deletions
106
apps/blog/content/blog/try-prisma-announcment-Kv6bwRcdjd/index.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,106 @@ | ||
| --- | ||
| title: "Try Prisma: The Fastest Way to Explore Prisma Examples" | ||
| slug: "try-prisma-announcment-Kv6bwRcdjd" | ||
| date: "2022-11-25" | ||
| authors: | ||
| - "Sabin Adams" | ||
| metaTitle: "Try Prisma: The Fastest Way to Explore Prisma Examples" | ||
| metaDescription: "Announcing: Try Prisma. A CLI utility that allows you to easily set up and try out an example projects using Prisma." | ||
mhartington marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| metaImagePath: "/try-prisma-announcment-Kv6bwRcdjd/imgs/meta.png" | ||
| heroImagePath: "/try-prisma-announcment-Kv6bwRcdjd/imgs/hero.svg" | ||
| heroImageAlt: "Try Prisma: The Fastest Way to Explore Prisma Examples" | ||
| tags: | ||
| - "announcement" | ||
| - "orm" | ||
|
|
||
| --- | ||
|
|
||
| We are very excited to announce our new CLI utility, `try-prisma`. This tool allows you to easily set up an official Prisma example project from the [prisma-examples](https://github.com/prisma/prisma-examples) repository locally with a single command: `npx try-prisma`. | ||
|
|
||
| ## Announcing `try-prisma` | ||
|
|
||
| Here at Prisma, our goal is to make your lives as developers easier. | ||
| Today, we are very excited to announce the release of our new tool that does just that: [`try-prisma`](https://github.com/prisma/try-prisma). | ||
|
|
||
| For a while now, we at Prisma have maintained our [prisma-examples](https://github.com/prisma/prisma-examples) repository with up to date, ready-to-go projects using Prisma. The intent for these projects is to allow users to experience what Prisma would be like in their new stack while evaluating technologies. | ||
mhartington marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| The process to set up one of these example projects, however, has been a very manual one, not providing the best developer experience we could provide. | ||
| `try-prisma` fixes this by allowing you to run a single command to set up any example project you want to try. | ||
|
|
||
| <Youtube videoId="2sCWMNGGGUE" /> | ||
|
|
||
| ## Embracing hands-on exploration | ||
|
|
||
| As developers, we love to jump in and get our hands dirty when evaluating a new project or set of tools. | ||
| With `try-prisma`, going from zero to experimentation is as simple as running a single command: | ||
|
|
||
| ```shell | ||
| npx try-prisma | ||
| ``` | ||
|
|
||
| The starter projects available typically include: | ||
|
|
||
| - A fully configured and ready-to-go application in the selected stack | ||
| - A detailed README with instructions on how to use the project | ||
| - Prisma set up and configured with a starter schema | ||
| - A seed script to populate your test database | ||
|
|
||
| These projects allow you to skip the steps where you have to learn how all the little pieces of your stack work together, allowing you to jump right in and begin experimenting. | ||
|
|
||
| ## The `prisma-examples` repository | ||
|
|
||
| The `try-prisma` CLI tool gives you easy access to the projects available in the [prisma-examples](https://github.com/prisma/prisma-examples) repository. | ||
|
|
||
| This repository contains an assortment of projects using different technologies that are organized into various folders based on the technologies used. | ||
|
|
||
| A few examples include: | ||
|
|
||
| - [`javascript/graphql`](https://github.com/prisma/prisma-examples/tree/latest/javascript/graphql) | ||
| - [`javascript/rest-nextjs`](https://github.com/prisma/prisma-examples/tree/latest/javascript/rest-nextjs) | ||
| - [`typescript/rest-nestjs`](https://github.com/prisma/prisma-examples/tree/latest/typescript/rest-nestjs) | ||
| - [`typescript/grpc`](https://github.com/prisma/prisma-examples/tree/latest/typescript/grpc) | ||
|
|
||
| ## Built on your suggestions | ||
|
|
||
| The [prisma-examples](https://github.com/prisma/prisma-examples) repository is a resource for the community that includes examples of various technologies in use with Prisma. | ||
|
|
||
|  | ||
|
|
||
| We love receiving feedback and encourage you to submit suggestions for new example projects or enhancements for existing projects. | ||
|
|
||
| If you have any technologies you would like to see added to our library of examples or would like to submit a suggestion for an existing project, feel free to use either of the links below: | ||
|
|
||
| - [Suggest a new example](https://pris.ly/prisma-examples-suggestion) | ||
| - [Submit feedback for an existing example](https://pris.ly/prisma-examples-feedback) | ||
|
|
||
| Alternatively, you may submit a pull request to the [prisma-examples](https://github.com/prisma/prisma-examples) repository with your own example project or revisions following the [Contribution Guidelines](https://github.com/prisma/prisma-examples/blob/latest/CONTRIBUTING.md). | ||
|
|
||
| These suggestions will be closely monitored and acted upon by the Developer Advocate team here at Prisma. | ||
|
|
||
| ## Try it out | ||
|
|
||
| Sound exciting? Give it a try. | ||
|
|
||
| To get started, head over to your terminal and run the following command: | ||
|
|
||
| ```shell | ||
| npx try-prisma | ||
| ``` | ||
|
|
||
| You will be walked through a series of questions about which project you would like to use, where it should be installed, and how it should be configured: | ||
|
|
||
|  | ||
|
|
||
| Open up the new project and head to the README for information on how to start experimenting. | ||
|
|
||
| If you are curious about all of the options available via the CLI, head over to the [`try-prisma` repository](https://github.com/prisma/try-prisma) and check out the README. | ||
|
|
||
| <Button | ||
| variant="ppg" | ||
| href="https://github.com/prisma/try-prisma" | ||
| className="no-underline hover:no-underline w-fit mx-auto px-4" | ||
| >Head over to the try-prisma repository</Button> | ||
|
|
||
| If you run into any issues, feel free to leave an issue in the repository's [issues](https://github.com/prisma/try-prisma/issues) tab. | ||
|
|
||
| We hope you'll give `try-prisma` a try and that it improves your experience when testing out new tools. | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions
18
apps/blog/public/try-prisma-announcment-Kv6bwRcdjd/imgs/hero.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+339 KB
apps/blog/public/try-prisma-announcment-Kv6bwRcdjd/imgs/suggestions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.