https://github.com/mrdatawolf/inventory_converter
Takes a inventory spreadsheet and converts it into a pos spreadsheet and a shopify one.
https://github.com/mrdatawolf/inventory_converter
Last synced: 3 months ago
JSON representation
Takes a inventory spreadsheet and converts it into a pos spreadsheet and a shopify one.
- Host: GitHub
- URL: https://github.com/mrdatawolf/inventory_converter
- Owner: mrdatawolf
- License: mit
- Created: 2021-11-19T06:47:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-29T07:02:10.000Z (over 3 years ago)
- Last Synced: 2025-01-01T19:18:45.674Z (5 months ago)
- Language: TypeScript
- Size: 253 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
install node.js to your system https://nodejs.org/en/
create your repo you want to use.
use github cli gh repo clone mrdatawolf/inventory_converter . make sure you are in the parent folder of your folder gh will create for you.
npx create-next-app@latest --typescript
cd into the folder and rn npm run dev
npm i prisma --save-dev
npm i -S @premieroctet/next-crud
npm i exceljs
create .gitignore in db folder. do a * inside of it.
npx prisma init
mkdir /db directory
update .env DATABASE_URL to point to your db see https://www.prisma.io/docs/reference/database-reference/connection-urls
update /prisma/schema.prisma with the database you choose.
edit prisma/schema.prisma to have models (see prisma.io docs)
npx prisma generate
npx prisma migrate dev
you can do npx prisma studio to see the db