### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.20/get-started/01-setting-up-prisma-demo-server-GO-g001.mdx Creates a new project directory, navigates into it, and initializes the Prisma setup. This command guides the user through selecting a deployment option (Demo server) and generating client code for their chosen language (Go in this case). ```bash mkdir hello-world cd hello-world prisma init ``` -------------------------------- ### Prisma Get Started Metadata Source: https://github.com/prisma/prisma1/blob/master/docs/1.18/get-started/index.mdx Defines metadata for the Prisma 'Get Started' guide, specifying its title and display position. ```javascript export const meta = { title: 'Get Started', position: 1 } ``` -------------------------------- ### Prisma Get Started Metadata Source: https://github.com/prisma/prisma1/blob/master/docs/1.17/get-started/index.mdx Defines metadata for the Prisma 'Get Started' guide, specifying its title and display position. ```javascript export const meta = { title: 'Get Started', position: 1 } ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.21/get-started/01-setting-up-prisma-demo-server-GO-g001.mdx Creates a new project directory, navigates into it, and initializes the Prisma setup. This command guides the user through selecting a deployment option (Demo server) and generating client code for their chosen language (Go in this case). ```bash mkdir hello-world cd hello-world prisma init ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.30/get-started/01-setting-up-prisma-demo-server-GO-g001.mdx Initializes a new Prisma project by creating a directory, navigating into it, and running the `prisma init` command. This command bootstraps the necessary configuration files for your Prisma setup. ```bash mkdir hello-world cd hello-world prisma init ``` -------------------------------- ### Prisma Get Started Metadata Source: https://github.com/prisma/prisma1/blob/master/docs/1.16/get-started/index.mdx Defines metadata for the Prisma 'Get Started' guide, specifying its title and display position. ```javascript export const meta = { title: 'Get Started', position: 1 } ``` -------------------------------- ### Prisma Get Started Metadata Source: https://github.com/prisma/prisma1/blob/master/docs/1.15/get-started/index.mdx Defines metadata for the Prisma 'Get Started' guide, specifying its title and display position. ```javascript export const meta = { title: 'Get Started', position: 1 } ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.29/get-started/01-setting-up-prisma-demo-server-GO-g001.mdx Initializes a new Prisma project by creating a directory, navigating into it, and running the `prisma init` command. This command bootstraps the necessary configuration files for your Prisma setup. ```bash mkdir hello-world cd hello-world prisma init ``` -------------------------------- ### Prisma Setup Tutorial Metadata Source: https://github.com/prisma/prisma1/blob/master/docs/1.34/get-started/01-setting-up-prisma-demo-server-FLOW-f111.mdx Defines metadata for the Prisma setup tutorial, including its title, position in a sequence, ordering for getting started guides, and navigation text for the next step. It also specifies the technology ('flow') and its order. ```javascript export const meta = { title: 'Set up Prisma', position: 1, gettingStartedOrder: 3, gettingStartedTitle: 'Demo database', nextText: 'Great work! 👏 Move on to learn how you can change your datamodel and regenerate your Prisma client.', technology: 'flow', technologyOrder: 3, articleGroup: 'Set up Prisma', } ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.33/get-started/01-setting-up-prisma-demo-server-GO-g001.mdx Initializes a new Prisma project by creating a directory, navigating into it, and running the `prisma init` command. This command bootstraps the necessary configuration files for your Prisma setup. ```bash mkdir hello-world cd hello-world prisma init ``` -------------------------------- ### Prisma CLI Quickstart Example Source: https://github.com/prisma/prisma1/blob/master/docs/1.26/prisma-cli-and-configuration/using-the-prisma-cli-alx4.mdx Demonstrates the basic steps to initialize a new Prisma service, deploy it, and open the GraphQL Playground. This is a common workflow for getting started. ```bash prisma init hello-world # Select a *Demo server* from the interactive prompt cd hello-world prisma deploy prisma playground ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.31/get-started/01-setting-up-prisma-demo-server-GO-g001.mdx Initializes a new Prisma project by creating a directory, navigating into it, and running the `prisma init` command. This command bootstraps the necessary configuration files for your Prisma setup. ```bash mkdir hello-world cd hello-world prisma init ``` -------------------------------- ### Prisma CLI Quickstart Example Source: https://github.com/prisma/prisma1/blob/master/docs/1.25/prisma-cli-and-configuration/using-the-prisma-cli-alx4.mdx Demonstrates the basic steps to initialize a new Prisma service, deploy it, and open the GraphQL Playground. This is a common workflow for getting started. ```bash prisma init hello-world # Select a *Demo server* from the interactive prompt cd hello-world prisma deploy prisma playground ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.32/get-started/01-setting-up-prisma-demo-server-GO-g001.mdx Initializes a new Prisma project by creating a directory, navigating into it, and running the `prisma init` command. This command bootstraps the necessary configuration files for your Prisma setup. ```bash mkdir hello-world cd hello-world prisma init ``` -------------------------------- ### Prisma CLI Quickstart Example Source: https://github.com/prisma/prisma1/blob/master/docs/1.24/prisma-cli-and-configuration/using-the-prisma-cli-alx4.mdx Demonstrates the basic steps to initialize a new Prisma service, deploy it, and open the GraphQL Playground. This is a common workflow for getting started. ```bash prisma init hello-world # Select a *Demo server* from the interactive prompt cd hello-world prisma deploy prisma playground ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.22/get-started/01-setting-up-prisma-demo-server-GO-g001.mdx Initializes a new Prisma project by creating necessary configuration files like `prisma.yml` and `datamodel.prisma`. It guides the user through selecting a demo server and generating the Prisma Go client. ```bash mkdir hello-world cd hello-world prisma init ``` -------------------------------- ### Prisma CLI Quickstart Example Source: https://github.com/prisma/prisma1/blob/master/docs/1.23/prisma-cli-and-configuration/using-the-prisma-cli-alx4.mdx Demonstrates the basic steps to initialize a new Prisma service, deploy it, and open the GraphQL Playground. This is a common workflow for getting started. ```bash prisma init hello-world # Select a *Demo server* from the interactive prompt cd hello-world prisma deploy prisma playground ``` -------------------------------- ### Create Project Directory Source: https://github.com/prisma/prisma1/blob/master/docs/1.20/get-started/01-setting-up-prisma-existing-database-JAVASCRIPT-a003.mdx Creates a new directory named 'hello-world' and navigates into it, preparing the project structure for Prisma setup. ```bash mkdir hello-world cd hello-world ``` -------------------------------- ### Prepare Go Application with Prisma Source: https://github.com/prisma/prisma1/blob/master/docs/1.29/get-started/01-setting-up-prisma-existing-database-GO-g003.mdx Steps to initialize a Go project and set up dependency management using 'dep'. This includes creating a file and initializing dependencies. ```bash touch index.go dep init dep ensure ``` -------------------------------- ### Prisma CLI Quickstart Example Source: https://github.com/prisma/prisma1/blob/master/docs/1.22/prisma-cli-and-configuration/using-the-prisma-cli-alx4.mdx Demonstrates the basic steps to initialize a new Prisma service, deploy it, and open the GraphQL Playground. This is a common workflow for getting started. ```bash prisma init hello-world # Select a *Demo server* from the interactive prompt cd hello-world prisma deploy prisma playground ``` -------------------------------- ### Install Dependencies and Start React App Source: https://github.com/prisma/prisma1/blob/master/docs/1.5/01-Quickstart/02-Fullstack/01-React/01-Apollo.md Installs project dependencies and starts the React frontend application. The application will be accessible at http://localhost:3000. ```sh cd .. yarn install yarn start # open http://localhost:3000 in your browser ``` -------------------------------- ### Prepare Go Application with Prisma Source: https://github.com/prisma/prisma1/blob/master/docs/1.30/get-started/01-setting-up-prisma-existing-database-GO-g003.mdx Steps to initialize a Go project and set up dependency management using 'dep'. This includes creating a file and initializing dependencies. ```bash touch index.go dep init dep ensure ``` -------------------------------- ### Create Project Directory Source: https://github.com/prisma/prisma1/blob/master/docs/1.31/get-started/01-setting-up-prisma-new-database-GO-g002.mdx Creates a new directory named 'hello-world' and navigates into it. This is a standard step for starting a new project. ```bash mkdir hello-world cd hello-world ``` -------------------------------- ### Install Dependencies and Start React App Source: https://github.com/prisma/prisma1/blob/master/docs/1.4/01-Quickstart/02-Fullstack/01-React/01-Apollo.md Installs project dependencies and starts the React frontend application. The application will be accessible at http://localhost:3000. ```sh cd .. yarn install yarn start # open http://localhost:3000 in your browser ``` -------------------------------- ### Create New Directory and Navigate Source: https://github.com/prisma/prisma1/blob/master/docs/1.33/get-started/01-setting-up-prisma-new-database-GO-g002.mdx Creates a new project directory and navigates into it, preparing for Prisma setup. ```bash mkdir hello-world cd hello-world ``` -------------------------------- ### Install Dependencies and Start React App Source: https://github.com/prisma/prisma1/blob/master/docs/1.6/01-Quickstart/02-Fullstack/01-React/01-Apollo.md Installs project dependencies using `yarn` and then starts the React application. This involves navigating out of the `server` directory. ```sh cd .. yarn install yarn start # open http://localhost:3000 in your browser ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.30/get-started/01-setting-up-prisma-existing-database-GO-g003.mdx Creates a new Prisma project directory named 'hello-world'. This command launches an interactive wizard to guide you through configuring the connection to your existing database. ```bash prisma init hello-world ``` -------------------------------- ### Launch React Application Source: https://github.com/prisma/prisma1/blob/master/docs/1.3/01-Quickstart/02-Fullstack/01-React/01-Apollo.md Install project dependencies using `yarn install` and start the React application with `yarn start`. The application will be accessible at `http://localhost:3000`. ```sh cd .. yarn install yarn start # open http://localhost:3000 in your browser ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.33/get-started/01-setting-up-prisma-existing-database-GO-g003.mdx Initializes a new Prisma project named 'hello-world'. This command launches an interactive wizard to guide the user through connecting Prisma to an existing database, selecting the database type, providing connection details, and choosing the Prisma client. ```bash prisma init hello-world ``` -------------------------------- ### Launch React Application Source: https://github.com/prisma/prisma1/blob/master/docs/1.2/01-Quickstart/02-Fullstack/01-React/01-Apollo.md Install project dependencies using `yarn install` and start the React application with `yarn start`. The application will be accessible at `http://localhost:3000`. ```sh cd .. yarn install yarn start # open http://localhost:3000 in your browser ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.31/get-started/01-setting-up-prisma-existing-database-GO-g003.mdx Initializes a new Prisma project named 'hello-world'. This command launches an interactive wizard to guide the user through connecting Prisma to an existing database, selecting the database type, providing connection details, and choosing the Prisma client. ```bash prisma init hello-world ``` -------------------------------- ### Launch React Application Source: https://github.com/prisma/prisma1/blob/master/docs/1.1/01-Quickstart/02-Fullstack/01-React/01-Apollo.md Install project dependencies using `yarn install` and start the React application with `yarn start`. The application will be accessible at `http://localhost:3000`. ```sh cd .. yarn install yarn start # open http://localhost:3000 in your browser ``` -------------------------------- ### Launch React Application Source: https://github.com/prisma/prisma1/blob/master/docs/1.0/01-Quickstart/02-Fullstack/01-React/01-Apollo.md Install project dependencies using `yarn install` and start the React application with `yarn start`. The application will be accessible at `http://localhost:3000`. ```sh cd .. yarn install yarn start # open http://localhost:3000 in your browser ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.29/get-started/01-setting-up-prisma-existing-database-GO-g003.mdx Creates a new Prisma project directory named 'hello-world'. This command launches an interactive wizard to guide you through configuring the connection to your existing database. ```bash prisma init hello-world ``` -------------------------------- ### Install and Start Prisma CLI Source: https://github.com/prisma/prisma1/blob/master/docs/1.1/03-Tutorials/04-Cluster-Deployment/03-Digital-Ocean-(manual).md Installs the Prisma CLI globally using npm and starts a local Prisma cluster. This command assumes Node.js and npm are already installed. ```sh npm -g install prisma prisma local start ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.32/get-started/01-setting-up-prisma-existing-database-GO-g003.mdx Initializes a new Prisma project named 'hello-world'. This command launches an interactive wizard to guide the user through connecting Prisma to an existing database, selecting the database type, providing connection details, and choosing the Prisma client. ```bash prisma init hello-world ``` -------------------------------- ### Install and Start Prisma CLI Source: https://github.com/prisma/prisma1/blob/master/docs/1.0/03-Tutorials/04-Cluster-Deployment/03-Digital-Ocean-(manual).md Installs the Prisma CLI globally using npm and starts a local Prisma cluster. This command assumes Node.js and npm are already installed. ```sh npm -g install prisma prisma local start ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.34/get-started/01-setting-up-prisma-existing-database-GO-g003.mdx Initializes a new Prisma project named 'hello-world'. This command launches an interactive wizard to guide you through connecting Prisma to an existing database, selecting a database type, providing connection details, and choosing a Prisma client. ```bash prisma1 init hello-world ``` -------------------------------- ### Start Local Prisma Development Cluster Source: https://github.com/prisma/prisma1/blob/master/docs/1.3/01-Quickstart/01-Backend/02-Node/01-Node.md Starts the local development cluster for Prisma services. This command requires Docker to be installed and running on your machine. ```sh prisma local start ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.27/get-started/01-setting-up-prisma-existing-database-GO-g003.mdx Initializes a new Prisma project, typically named 'hello-world', and guides the user through connecting to an existing database (PostgreSQL or MongoDB) and selecting the Prisma Go client. ```bash prisma init hello-world ``` -------------------------------- ### Initialize Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.28/get-started/01-setting-up-prisma-existing-database-GO-g003.mdx Initializes a new Prisma project, typically named 'hello-world', and guides the user through connecting to an existing database (PostgreSQL or MongoDB) and selecting the Prisma Go client. ```bash prisma init hello-world ``` -------------------------------- ### Start Local Prisma Development Cluster Source: https://github.com/prisma/prisma1/blob/master/docs/1.2/01-Quickstart/01-Backend/02-Node/01-Node.md Starts the local development cluster for Prisma services. This command requires Docker to be installed and running on your machine. ```sh prisma local start ``` -------------------------------- ### Install Prisma CLI Source: https://github.com/prisma/prisma1/blob/master/docs/1.7/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Installs the Prisma Command Line Interface globally using npm or yarn. This tool is essential for managing Prisma services and generating APIs. ```bash npm install -g prisma # or # yarn global add prisma ``` -------------------------------- ### Bootstrap Prisma Service Source: https://github.com/prisma/prisma1/blob/master/docs/1.7/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Initializes a new Prisma service named 'hello-world'. This command sets up the necessary project structure and configuration files for a new Prisma project. ```bash prisma init hello-world ``` -------------------------------- ### Create User Response Example Source: https://github.com/prisma/prisma1/blob/master/docs/1.6/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md An example JSON response received after executing the createUser mutation. It confirms the creation and provides the unique identifier assigned to the new user. ```json { "data": { "createUser": { "id": "cjc69nckk31jx01505vgwmgch" } } } ``` -------------------------------- ### Prepare Go Application Source: https://github.com/prisma/prisma1/blob/master/docs/1.32/get-started/01-setting-up-prisma-new-database-GO-g002.mdx Commands to create a Go file and initialize dependency management using `dep`. ```bash touch index.go dep init ``` -------------------------------- ### Install Prisma CLI Source: https://github.com/prisma/prisma1/blob/master/docs/1.6/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Installs the Prisma CLI globally on your system using npm or yarn. This command is essential for managing Prisma services and interacting with the Prisma ecosystem. ```bash npm install -g prisma # or # yarn global add prisma ``` -------------------------------- ### Prepare Go Application Source: https://github.com/prisma/prisma1/blob/master/docs/1.33/get-started/01-setting-up-prisma-new-database-GO-g002.mdx Commands to create a Go file and initialize dependency management using `dep`. ```bash touch index.go dep init ``` -------------------------------- ### Prepare Go Application with Dep Source: https://github.com/prisma/prisma1/blob/master/docs/1.34/get-started/01-setting-up-prisma-existing-database-GO-g003.mdx Steps to initialize a Go project using dep for dependency management and prepare the environment for Prisma client usage. Includes creating a file and initializing dependencies. ```bash touch index.go dep init dep ensure ``` -------------------------------- ### Install Prisma CLI Source: https://github.com/prisma/prisma1/blob/master/docs/1.5/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Installs the Prisma CLI globally on your system using npm or yarn. This command is essential for managing Prisma services and interacting with the Prisma ecosystem. ```bash npm install -g prisma # or # yarn global add prisma ``` -------------------------------- ### Create User Response Example Source: https://github.com/prisma/prisma1/blob/master/docs/1.5/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md An example JSON response received after executing the createUser mutation. It confirms the creation and provides the unique identifier assigned to the new user. ```json { "data": { "createUser": { "id": "cjc69nckk31jx01505vgwmgch" } } } ``` -------------------------------- ### Prepare Go Application Source: https://github.com/prisma/prisma1/blob/master/docs/1.29/get-started/01-setting-up-prisma-new-database-GO-g002.mdx Commands to create a Go file and initialize dependency management using `dep`. ```bash touch index.go dep init ``` -------------------------------- ### Create User Response Example Source: https://github.com/prisma/prisma1/blob/master/docs/1.4/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md An example JSON response received after executing the createUser mutation. It confirms the creation and provides the unique identifier assigned to the new user. ```json { "data": { "createUser": { "id": "cjc69nckk31jx01505vgwmgch" } } } ``` -------------------------------- ### Prepare Go Application Source: https://github.com/prisma/prisma1/blob/master/docs/1.30/get-started/01-setting-up-prisma-new-database-GO-g002.mdx Commands to create a Go file and initialize dependency management using `dep`. ```bash touch index.go dep init ``` -------------------------------- ### Prepare Go Application Source: https://github.com/prisma/prisma1/blob/master/docs/1.31/get-started/01-setting-up-prisma-new-database-GO-g002.mdx Commands to create a Go file and initialize dependency management using `dep`. ```bash touch index.go dep init ``` -------------------------------- ### Install Prisma CLI Source: https://github.com/prisma/prisma1/blob/master/docs/1.4/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Installs the Prisma CLI globally on your system using npm or yarn. This command is essential for managing Prisma services and interacting with the Prisma ecosystem. ```bash npm install -g prisma # or # yarn global add prisma ``` -------------------------------- ### Create User Response Example Source: https://github.com/prisma/prisma1/blob/master/docs/1.3/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md An example JSON response received after executing the createUser mutation. It confirms the creation and provides the unique identifier assigned to the new user. ```json { "data": { "createUser": { "id": "cjc69nckk31jx01505vgwmgch" } } } ``` -------------------------------- ### Bootstrap Prisma Service Source: https://github.com/prisma/prisma1/blob/master/docs/1.6/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Initializes a new Prisma service in a specified directory. This command creates the necessary project structure and configuration files for a new Prisma service. ```bash prisma init hello-world ``` -------------------------------- ### Bootstrap Prisma Service Source: https://github.com/prisma/prisma1/blob/master/docs/1.4/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Initializes a new Prisma service in a specified directory. This command creates the necessary project structure and configuration files for a new Prisma service. ```bash prisma init hello-world ``` -------------------------------- ### Install Prisma CLI Source: https://github.com/prisma/prisma1/blob/master/docs/1.3/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Installs the Prisma CLI globally on your system using npm or yarn. This command is essential for managing Prisma services and interacting with the Prisma ecosystem. ```bash npm install -g prisma # or # yarn global add prisma ``` -------------------------------- ### Bootstrap Prisma Service Source: https://github.com/prisma/prisma1/blob/master/docs/1.5/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Initializes a new Prisma service in a specified directory. This command creates the necessary project structure and configuration files for a new Prisma service. ```bash prisma init hello-world ``` -------------------------------- ### Create User Response Example Source: https://github.com/prisma/prisma1/blob/master/docs/1.2/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md An example JSON response received after executing the createUser mutation. It confirms the creation and provides the unique identifier assigned to the new user. ```json { "data": { "createUser": { "id": "cjc69nckk31jx01505vgwmgch" } } } ``` -------------------------------- ### Bootstrap Prisma Service Source: https://github.com/prisma/prisma1/blob/master/docs/1.2/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Initializes a new Prisma service in a specified directory. This command creates the necessary project structure and configuration files for a new Prisma service. ```bash prisma init hello-world ``` -------------------------------- ### Install Prisma CLI Source: https://github.com/prisma/prisma1/blob/master/docs/1.2/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Installs the Prisma CLI globally on your system using npm or yarn. This command is essential for managing Prisma services and interacting with the Prisma ecosystem. ```bash npm install -g prisma # or # yarn global add prisma ``` -------------------------------- ### Create New Directory for Prisma Project Source: https://github.com/prisma/prisma1/blob/master/docs/1.24/get-started/01-setting-up-prisma-new-database-GO-g002.mdx Creates a new directory named 'hello-world' and navigates into it, preparing the environment for a new Prisma project. ```bash mkdir hello-world cd hello-world ``` -------------------------------- ### Create User Response Example Source: https://github.com/prisma/prisma1/blob/master/docs/1.1/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md An example JSON response received after executing the createUser mutation. It confirms the creation and provides the unique identifier assigned to the new user. ```json { "data": { "createUser": { "id": "cjc69nckk31jx01505vgwmgch" } } } ``` -------------------------------- ### Install Prisma CLI Source: https://github.com/prisma/prisma1/blob/master/docs/1.1/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Installs the Prisma CLI globally on your system using npm or yarn. This command is essential for managing Prisma services and interacting with the Prisma ecosystem. ```bash npm install -g prisma # or # yarn global add prisma ``` -------------------------------- ### Bootstrap Prisma Service Source: https://github.com/prisma/prisma1/blob/master/docs/1.1/03-Tutorials/01-Prisma-Basics/01-Getting-Started.md Initializes a new Prisma service in a specified directory. This command creates the necessary project structure and configuration files for a new Prisma service. ```bash prisma init hello-world ``` -------------------------------- ### Create User Response Example Source: https://github.com/prisma/prisma1/blob/master/docs/1.0/03-Tutorials/01-Prisma-Basics/01-Getting-started.md An example JSON response received after executing the createUser mutation. It confirms the creation and provides the unique identifier assigned to the new user. ```json { "data": { "createUser": { "id": "cjc69nckk31jx01505vgwmgch" } } } ``` -------------------------------- ### Bootstrap Prisma Service Source: https://github.com/prisma/prisma1/blob/master/docs/1.0/03-Tutorials/01-Prisma-Basics/01-Getting-started.md Initializes a new Prisma service in a specified directory. This command creates the necessary project structure and configuration files for a new Prisma service. ```bash prisma init hello-world ```