Outreach is a sample application that demonstrates a responsive eCommerce website using Prisma, Vue.js, TailwindCss, Express and Node.js. The application will load products from the database and displays them. Users can log in, register, order products from the website. This website also includes the Vuex Shopping cart system and beautifully designed components using Tailwindcss.
npm Install
configure the database url here
DATABASE_URL="mysql://root@localhost:3306/example_db"
prisma/prisma.schema
datasource db {
provider = "mysql"
url = env("DATABASE_URL")
}
To pull the DB from MySQL DB we provided above
npx prisma db pull
To generate the Prisma client
npx prisma generate
npm start
npm start-dev
npm run test