# Create a new Project and Studio https://www.sanity.io/learn/course/build-content-apps-with-sanity-app-sdk/create-a-new-project-and-studio.md Get setup with a fresh hosted backend for your content, and the traditional administration panel for Sanity. Content written to Sanity is stored within the Content Lake, not in Sanity Studio. The schema types you configure are made available in Sanity Studio, and it writes content of that shape to the Content Lake. You can think of the Sanity Studio as a _"window into the Content Lake."_ ## So I don't need a Studio to build an SDK App? Nope! You can write data of any shape (that conforms to JSON) to the Content Lake. But having a Studio makes it easier to reason about our _complete_ universe of content if we have one configured. It's also where you'd configure TypeScript types. So you'll start this course by creating a new Sanity project and Sanity Studio—you just won't need to edit any content there. ## Create a new project You can create a new free project and initialize a new Sanity Studio from one command using the Sanity CLI. If you do not yet have a Sanity account, you can create one during this process. You may like to create a parent folder to contain the projects you work on in this course, as your Sanity Studio and App SDK app will live side-by-side. Once you have a Studio and App setup, your folder structure should look like this: ```text feedback-course ├── studio └── app-feedback ``` 1. **Run** the following command in your terminal to create a new Sanity project and Sanity Studio. ```sh:Terminal pnpm dlx create-sanity@latest --template blog --create-project "Feedback Processor" --dataset production --typescript --output-path studio ``` 1. **Run** the following from inside of the `/studio` directory ```sh:Terminal pnpm run dev ``` Open [http://localhost:3333](http://localhost:3333) in your browser and log in. You should now see the Sanity Studio dashboard interface with Post, Category and Author schema types already configured. ## Add "Feedback" schema types The schema types that appear in the Structure tool of Sanity Studio are defined in the project's configuration files. You'll need to create a new file to add "Feedback" type documents as an option in the Studio and a TypeScript type for your App. 1. **Create** a new file for Feedback type documents ```typescript:studio/schemaTypes/feedbackType.ts import {defineField, defineType} from 'sanity' export const feedbackType = defineType({ name: 'feedback', title: 'Feedback', type: 'document', fields: [ defineField({ name: 'content', type: 'text', }), defineField({ name: 'author', type: 'string', }), defineField({ name: 'email', type: 'string', }), defineField({ name: 'sentiment', type: 'string', options: {list: ['positive', 'neutral', 'negative'], layout: 'radio'}, }), defineField({ name: 'status', type: 'string', options: {list: ['pending', 'approved', 'spam'], layout: 'radio'}, }), defineField({ name: 'assignee', type: 'string', }), defineField({ name: 'notes', type: 'text', }), ], preview: { select: { title: 'content', subtitle: 'author', }, }, }) ``` **Update** the schema types index file to include the feedback schema type. ```typescript:studio/schemaTypes/index.ts import blockContent from './blockContent' import category from './category' import post from './post' import author from './author' import {feedbackType} from './feedbackType' export const schemaTypes = [post, author, category, blockContent, feedbackType] ``` You should now see an option in your Structure tool to list and create Feedback type documents. ## Import seed data It is easier to build front ends when you have content, and so some has been prepared for you already. 1. **Download** `feedback-seed.ndjson` 2. **Run** the following from the terminal, inside the `studio` folder to import 20 example Feedback type documents. ```sh:Terminal pnpm dlx sanity dataset import feedback-seed.ndjson production ``` Open your Studio to confirm these documents are now visible, there's a mix of spam comments and none of them have been marked to indicate their "sentiment," that's the job of our new app! Let's start building it next.