Inventory management system for skoolworkshop. Keeps track of products stored in the warehouse and shows which products are needed for a workshop.
The backend is written in nodejs using express and prisma.
Use the following commands to create and import the database. If not using
docker edit the .env
file to match your database settings.
$ docker run -d -e MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=true -p 3306:3306 mariadb:latest
$ npx prisma db push
Then use the following commands to start the backend development server.
$ npm install
$ npm run serve
The frontend is created using vue, pinia and bootstrap. Use the following commands to start the frontend development server.
$ npm install
$ npm run serve