Website for IoT Wharehouse
Almacén IoT (IoT Wharehouse) is an IoT System for the managment, control and monitoring of the materials in the RoBorregos Lab. It is composed of a web application, a hardware system, and a WebSocket's Server.
- React
- Next.js
- TypeScript
- Prisma
- tRPC
- Tailwind CSS
- Node.js
- NextAuth.js
- PostgreSQL
- Azure Active Directory
- Formik
- Clone the repository
git clone https://github.com/RoBorregos/Robo-Almacen.git
- Go to the project directory
cd Robo-Almacen
- Create a
.env
file in the root directory of the project and add the following environment variables
cp .env.example .env
(Or just make sure that the .env
file is in the root directory)
- Install dependencies
npm install
- Pull the latest changes from the Database
npx prisma db pull
- Run the development server
npm run dev
Name | Github | |
---|---|---|
Iván Romero | @IvanRomero03 | [email protected] |
Oscar Arreola | @Oscar-gg | [email protected] |
Diego Hernández | ||
Alejandra Coeto | ||
Yaír Reyes | ||
Leonardo Llanas | ||
Gilberto Malagamba | @GilMM27 | [email protected] |
├─ prisma
│ └─ schema.prisma
│
├─ public
│ ├── favicon.ico
│ └── images
│
└─ src
├─ components
├─ pages
│ └─ api
│ ├─ auth
│ └─ trpc
│
├─ server
│ └─ api
│ └─ routers
│
├─ styles
│
└─ utils
First, on the root of this project run:
npm run dev
Then on vscode forward the port that is hosting the web page (commonly 3000) and change the visibility to public. Add the respective Endpoint URLs on aws WebSocket Routes, for example: https://something.devtunnels.ms/api/websocket/connect
Use https://piehost.com/websocket-tester and connect to the WebSocket link, for example: wss://something.execute-api.us-east-2.amazonaws.com/development/
Try sending a JSON such as { "data": "", "action": "getPrestamos","id": "RFID" } and expect a response like {"status":"Success","data":[]}
If there are préstamos in the database then it will return an array like {"status":"Success","data":[{"User":{"name":"Gilberto Malagamba Montejo"},"Item":{"name":"a"},"Celda":{"name":"d","column":0,"row":0},"id":"cm1zrg9l7000kes8epm8d74ya"}]}
In the arduino code, we use the following function to send that message:
wsClient.sendResponse("", "getPrestamos", "RFID"); // Data Action Id
In the following table there are all the examples of actions
Message | Response |
---|---|
{ "data": "", "action": "getPrestamos", "id": "RFID" } | {"status":"Success","data":[{"User":{"name":"UserName"},"Item":{"name":"ItemName"},"Celda":{"name":"CeldaName","column":#,"row":#},"id":"Id"}]} |
{ "data": "", "action": "getIssuedPrestamos", "id": "RFID" } | {"status":"Success","data":[{"User":{"name":"UserName"},"Item":{"name":"ItemName"},"Celda":{"name":"CeldaName","column":#,"row":#},"id":"Id"}]} |
{ "data": "RFIDtoken,prestamoId", "action": "issuePrestamo", "id": "RFID" } | {"status":"Success","data":"Prestamo issued"} |
{ "data": "RFIDtoken,prestamoId", "action": "returnPrestamo", "id": "RFID" } | {"status":"Success","data":"Prestamo returned"} |
Run a local instance of mysql or similar provider and add the route to url in the shema.prisma file. Suggestion: Try using xampp.
datasource db { provider = "mysql" url = "mysql://root:@localhost:3306/AlmacenLocal" }
To open the database ui interface run:
npx prisma studio
To test a new schema.prisma kill next dev and prisma studio and run:
npx prisma migrate dev
npx prisma generate