T3 Turbo Add Another App
What steps do i need to follow to add another next app in my t3-turbo monorepo
npx create-next-app@latest my-cool-app (this will create a new app with the name my-cool-app it will also prompt you for a name when creating)npm init -y to create a new package.json"name" field in the package.json to the name of your package npx create-next-app@latest my-cool-appnpm init -y"name"{
"name": "@acme/my-package",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
}