├── .env.example ├── .eslintrc.json ├── .github └── workflows │ └── licensing.yml ├── .gitignore ├── LICENSE ├── README.md ├── components └── Product.js ├── doc └── dependency_decisions.yml ├── lib └── prisma.js ├── netlify.toml ├── next.config.js ├── package-lock.json ├── package.json ├── pages ├── _app.js ├── api │ └── products.js └── index.js ├── postcss.config.js ├── prisma ├── data.js ├── schema.prisma └── seed.js ├── public ├── favicon.ico ├── images │ ├── helmet.jpg │ ├── shirt.jpg │ ├── socks.jpg │ └── sweatshirt.jpg └── vercel.svg ├── styles └── globals.css └── tailwind.config.js /.env.example: -------------------------------------------------------------------------------- 1 | DATABASE_URL=mysql://:@/?sslaccept=strict 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/licensing.yml: -------------------------------------------------------------------------------- 1 | name: Verify dependency licenses 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | types: 9 | - opened 10 | - reopened 11 | - synchronize 12 | 13 | jobs: 14 | licensing: 15 | runs-on: ubuntu-latest 16 | steps: 17 | - uses: actions/checkout@v2 18 | with: 19 | fetch-depth: 0 20 | - run: sudo gem install license_finder 21 | - run: npm install 22 | - run: license_finder 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env 29 | .env.local 30 | .env.development.local 31 | .env.test.local 32 | .env.production.local 33 | 34 | # vercel 35 | .vercel 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Next.js starter 2 | 3 | This is a [Next.js](https://nextjs.org/) project that uses [Prisma](https://www.prisma.io/) to connect to a [PlanetScale](https://planetscale.com/) database and [Tailwind CSS](https://tailwindcss.com/) for styling. 4 | 5 | ## Prerequisites 6 | 7 | - [Node.js](https://nodejs.org/en/download/) 8 | - [PlanetScale CLI](https://github.com/planetscale/cli) 9 | - Authenticate the CLI with the following command: 10 | 11 | ```sh 12 | pscale auth login 13 | ``` 14 | 15 | ## Set up the database 16 | 17 | Create a new database with the following command: 18 | 19 | ```sh 20 | pscale database create 21 | ``` 22 | 23 | > A branch, `main`, was automatically created when you created your database, so you can use that for `BRANCH_NAME` in the steps below. 24 | 25 | ## Set up the starter Next.js app 26 | 27 | Clone the starter repository. 28 | 29 | ```sh 30 | git clone https://github.com/planetscale/nextjs-starter 31 | ``` 32 | 33 | Install the dependencies. 34 | 35 | ```sh 36 | npm install 37 | ``` 38 | 39 | Next, you'll need to create a database username and password through the CLI to connect to your application. If you'd prefer to use the dashboard for this step, you can find those instructions in the [Connection Strings documentation](/concepts/connection-strings#creating-a-password) and then come back here to finish setup. 40 | 41 | First, create your `.env` file by renaming the `.env.example` file to `.env`: 42 | 43 | ```sh 44 | mv .env.example .env 45 | ``` 46 | 47 | Next, using the PlanetScale CLI, create a new username and password for the branch of your database: 48 | 49 | ```sh 50 | pscale password create 51 | ``` 52 | 53 | > The `PASSWORD_NAME` value represents the name of the username and password being generated. You can have multiple credentials for a branch, so this gives you a way to categorize them. To manage your passwords in the dashboard, go to your database overview page, click "Settings", and then click "Passwords". 54 | 55 | Take note of the values returned to you, as you won't be able to see this password again. 56 | 57 | ```text 58 | Password production-password was successfully created. 59 | Please save the values below as they will not be shown again 60 | 61 | NAME USERNAME ACCESS HOST URL ROLE PLAIN TEXT 62 | --------------------- -------------- ----------------------------------- ------------------ ------------------------------------------------------- 63 | production-password xxxxxxxxxxxxx xxxxxx.us-east-2.psdb.cloud Can Read & Write pscale_pw_xxxxxxx 64 | ``` 65 | 66 | You'll use these properties to construct your connection string, which will be the value for `DATABASE_URL` in your `.env` file. Update the `DATABASE_URL` property with your connection string in the following format: 67 | 68 | ```text 69 | mysql://:@/?sslaccept=strict 70 | ``` 71 | 72 | Push the database schema to your PlanetScale database using Prisma. 73 | 74 | `npx prisma db push` 75 | 76 | Run the seed script to populate your database with `Product` and `Category` data. 77 | 78 | `npm run seed` 79 | 80 | ## Run the App 81 | 82 | Run the app with following command: 83 | 84 | `npm run dev` 85 | 86 | Open your browser at [localhost:3000](localhost:3000) to see the running application. 87 | 88 | ## Deploying 89 | 90 | After you've got your application running locally, it's time to deploy it. To do so, you'll need to promote your database branch (`main` by default) to be the production branch ([read the branching documentation for more information](https://planetscale.com/docs/concepts/branching)). 91 | 92 | ```sh 93 | pscale branch promote 94 | ``` 95 | 96 | Now that your branch has been promoted to production, you can either use the existing password you generated earlier for running locally or create a new password. Regardless, you'll need a password in the deployment steps below. 97 | 98 | Choose one of the following deploy buttons and make sure to update the `DATABASE_URL` variable during this setup process. 99 | 100 | ### Deploy on Vercel 101 | 102 | [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/planetscale/nextjs-starter&env=DATABASE_URL) 103 | 104 | ### Deploy on Netlify 105 | 106 | \*Note: The `Netlify.toml` file in this repository includes the configuration for you to customize the `DATABASE_URL` property on the initial deploy. 107 | 108 | [![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/planetscale/nextjs-starter) 109 | 110 | ## Learn More 111 | 112 | To learn more about PlanetScale, take a look at the following resources: 113 | 114 | - [PlanetScale quick start guide](https://planetscale.com/docs/tutorials/planetscale-quick-start-guide) - Learn how to get started with PlanetScale. 115 | 116 | ## What's next? 117 | 118 | Learn more about how PlanetScale allows you to make [non-blocking schema changes](https://planetscale.com/docs/concepts/nonblocking-schema-changes) to your database tables without locking or causing downtime for production databases. If you're interested in learning how to secure your application when connecting to PlanetScale, 119 | please read [Connecting to PlanetScale securely](/reference/planetscale-security). 120 | 121 | ## Need help? 122 | 123 | Get help from [PlanetScale's support team](https://www.planetscale.com/support), or join our [GitHub Discussion board](https://github.com/planetscale/beta/discussions) to see how others are using PlanetScale. 124 | -------------------------------------------------------------------------------- /components/Product.js: -------------------------------------------------------------------------------- 1 | import Image from 'next/image'; 2 | 3 | export default function Product({ product }) { 4 | const { name, description, price, image, category } = product; 5 | 6 | return ( 7 |
11 | {name} 19 |
20 |
{name}
21 |

{description}

22 |

${price}

23 |
24 |
25 | 26 | {category.name} 27 | 28 |
29 |
30 | ); 31 | } 32 | -------------------------------------------------------------------------------- /doc/dependency_decisions.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - - :permit 3 | - bsd-2-clause 4 | - :who: 5 | :why: 6 | :versions: [] 7 | :when: 2022-01-29 15:22:40.108914000 Z 8 | - - :permit 9 | - bsd-3-clause 10 | - :who: 11 | :why: 12 | :versions: [] 13 | :when: 2022-01-29 15:22:40.416566000 Z 14 | - - :permit 15 | - apache-2.0 16 | - :who: 17 | :why: 18 | :versions: [] 19 | :when: 2022-01-29 15:22:40.678592000 Z 20 | - - :permit 21 | - MIT 22 | - :who: 23 | :why: 24 | :versions: [] 25 | :when: 2022-01-29 15:22:40.943407000 Z 26 | - - :permit 27 | - ISC 28 | - :who: 29 | :why: 30 | :versions: [] 31 | :when: 2022-01-29 15:22:41.204596000 Z 32 | - - :permit 33 | - mpl-2.0 34 | - :who: 35 | :why: 36 | :versions: [] 37 | :when: 2022-01-29 15:22:41.463837000 Z 38 | -------------------------------------------------------------------------------- /lib/prisma.js: -------------------------------------------------------------------------------- 1 | import { PrismaClient } from '@prisma/client'; 2 | 3 | let prisma; 4 | 5 | if (process.env.NODE_ENV === 'production') { 6 | prisma = new PrismaClient(); 7 | } else { 8 | if (!global.prisma) { 9 | global.prisma = new PrismaClient(); 10 | } 11 | prisma = global.prisma; 12 | } 13 | 14 | export default prisma; -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [template.environment] 2 | DATABASE_URL = "Database URL" -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: true, 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nextjs-starter", 3 | "private": true, 4 | "scripts": { 5 | "dev": "next dev", 6 | "build": "next build", 7 | "start": "next start", 8 | "lint": "next lint", 9 | "seed": "node prisma/seed.js" 10 | }, 11 | "dependencies": { 12 | "@prisma/client": "^3.8.1", 13 | "next": "12.0.8", 14 | "react": "17.0.2", 15 | "react-dom": "17.0.2" 16 | }, 17 | "devDependencies": { 18 | "autoprefixer": "^10.4.2", 19 | "eslint": "8.7.0", 20 | "eslint-config-next": "12.0.8", 21 | "postcss": "^8.4.5", 22 | "prisma": "^3.8.1", 23 | "tailwindcss": "^3.0.15" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- 1 | import '../styles/globals.css'; 2 | 3 | export default function MyApp({ Component, pageProps }) { 4 | return ; 5 | } 6 | -------------------------------------------------------------------------------- /pages/api/products.js: -------------------------------------------------------------------------------- 1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction 2 | import prisma from './../../lib/prisma.js'; 3 | 4 | export default async function handler(req, res) { 5 | if (req.method === 'GET') { 6 | try { 7 | const data = await prisma.product.findMany({}); 8 | return res.status(200).json({ data }); 9 | } catch (err) { 10 | console.error(err); 11 | return res.status(500).json({ msg: 'Something went wrong' }); 12 | } 13 | } else { 14 | return res.status(405).json({ msg: 'Method not allowed' }); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- 1 | import Head from 'next/head'; 2 | import Product from '../components/Product'; 3 | import prisma from '../lib/prisma'; 4 | 5 | export default function Home({ products }) { 6 | return ( 7 |
8 | 9 | PlanetScale Next.js Quickstart 10 | 11 | 12 | 13 | 14 |
15 |

Next.js Starter

16 |

17 | 🔥 Shop from the hottest items in the world 🔥 18 |

19 |
20 | {products.map((product) => ( 21 | 22 | ))} 23 |
24 |
25 | 26 |
27 |
28 | ); 29 | } 30 | 31 | export async function getStaticProps(context) { 32 | const data = await prisma.product.findMany({ 33 | include: { 34 | category: true, 35 | }, 36 | }); 37 | 38 | //convert decimal value to string to pass through as json 39 | const products = data.map((product) => ({ 40 | ...product, 41 | price: product.price.toString(), 42 | })); 43 | return { 44 | props: { products }, 45 | }; 46 | } 47 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /prisma/data.js: -------------------------------------------------------------------------------- 1 | const { Prisma } = require('@prisma/client'); 2 | 3 | const categories = [ 4 | { 5 | name: 'Hats', 6 | description: 'Things you can wear on your head', 7 | }, 8 | { 9 | name: 'Socks', 10 | description: 'Things you can wear on your feet', 11 | }, 12 | { 13 | name: 'Shirts', 14 | description: 'Things you wear on the top half of your body', 15 | }, 16 | ]; 17 | 18 | const products = [ 19 | { 20 | name: 'Cool helmet.', 21 | description: 'A nice helmet to wear on your head', 22 | price: new Prisma.Decimal(19.95), 23 | image: '/images/helmet.jpg', 24 | category_id: 1, 25 | }, 26 | { 27 | name: 'Grey T-Shirt', 28 | description: 'A nice shirt that you can wear on your body', 29 | price: new Prisma.Decimal(22.95), 30 | image: '/images/shirt.jpg', 31 | category_id: 3, 32 | }, 33 | { 34 | name: 'Socks', 35 | description: 'Cool socks that you can wear on your feet', 36 | price: new Prisma.Decimal(12.95), 37 | image: '/images/socks.jpg', 38 | category_id: 2, 39 | }, 40 | { 41 | name: 'Sweatshirt', 42 | description: 'Cool sweatshirt that you can wear on your body', 43 | price: new Prisma.Decimal(12.95), 44 | image: '/images/sweatshirt.jpg', 45 | category_id: 3, 46 | }, 47 | ]; 48 | 49 | module.exports = { 50 | products, 51 | categories, 52 | }; 53 | -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- 1 | generator client { 2 | provider = "prisma-client-js" 3 | previewFeatures = ["referentialIntegrity"] 4 | } 5 | 6 | datasource db { 7 | provider = "mysql" 8 | url = env("DATABASE_URL") 9 | referentialIntegrity = "prisma" 10 | } 11 | 12 | model Product { 13 | id Int @id @default(autoincrement()) 14 | name String 15 | description String 16 | price Decimal 17 | image String 18 | category Category? @relation(fields: [category_id], references: [id]) 19 | category_id Int 20 | 21 | @@index([category_id]) 22 | } 23 | 24 | model Category { 25 | id Int @id @default(autoincrement()) 26 | name String 27 | description String 28 | products Product[] 29 | } 30 | -------------------------------------------------------------------------------- /prisma/seed.js: -------------------------------------------------------------------------------- 1 | const { PrismaClient } = require('@prisma/client'); 2 | const { categories, products } = require('./data.js'); 3 | const prisma = new PrismaClient(); 4 | 5 | const load = async () => { 6 | try { 7 | await prisma.category.deleteMany(); 8 | console.log('Deleted records in category table'); 9 | 10 | await prisma.product.deleteMany(); 11 | console.log('Deleted records in product table'); 12 | 13 | await prisma.$queryRaw`ALTER TABLE Product AUTO_INCREMENT = 1`; 14 | console.log('reset product auto increment to 1'); 15 | 16 | await prisma.$queryRaw`ALTER TABLE Category AUTO_INCREMENT = 1`; 17 | console.log('reset category auto increment to 1'); 18 | 19 | await prisma.category.createMany({ 20 | data: categories, 21 | }); 22 | console.log('Added category data'); 23 | 24 | await prisma.product.createMany({ 25 | data: products, 26 | }); 27 | console.log('Added product data'); 28 | } catch (e) { 29 | console.error(e); 30 | process.exit(1); 31 | } finally { 32 | await prisma.$disconnect(); 33 | } 34 | }; 35 | 36 | load(); 37 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetscale/nextjs-starter/4f6bda5abd1f81237a15c01a7c3b6e6c961e4215/public/favicon.ico -------------------------------------------------------------------------------- /public/images/helmet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetscale/nextjs-starter/4f6bda5abd1f81237a15c01a7c3b6e6c961e4215/public/images/helmet.jpg -------------------------------------------------------------------------------- /public/images/shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetscale/nextjs-starter/4f6bda5abd1f81237a15c01a7c3b6e6c961e4215/public/images/shirt.jpg -------------------------------------------------------------------------------- /public/images/socks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetscale/nextjs-starter/4f6bda5abd1f81237a15c01a7c3b6e6c961e4215/public/images/socks.jpg -------------------------------------------------------------------------------- /public/images/sweatshirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetscale/nextjs-starter/4f6bda5abd1f81237a15c01a7c3b6e6c961e4215/public/images/sweatshirt.jpg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: [ 3 | "./pages/**/*.{js,ts,jsx,tsx}", 4 | "./components/**/*.{js,ts,jsx,tsx}", 5 | ], 6 | theme: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | } --------------------------------------------------------------------------------