Skip to content

Latest commit

 

History

History
87 lines (75 loc) · 1.92 KB

README.md

File metadata and controls

87 lines (75 loc) · 1.92 KB

Robo-Almacen

Pagina Web de Almacén IoT

Description

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.

Tech Stack

Installation

  1. Clone the repository
git clone https://github.com/RoBorregos/Robo-Almacen.git
  1. Go to the project directory
cd Robo-Almacen
  1. 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)

  1. Install dependencies
npm install
  1. Pull the latest changes from the Database
npx prisma db pull
  1. Run the development server
npm run dev

Development Team

Name Github Email
Iván Romero @IvanRomero03 [email protected]
Oscar Arreola
Diego Hernández
Alejandra Coeto
Yaír Reyes
Leonardo Llanas

Proyect structure

├─ prisma
│   └─ schema.prisma
│
├─ public
│   ├── favicon.ico
│   └── images
│
└─ src
    ├─ components
    ├─ pages
    │   └─ api
    │       ├─ auth
    │       └─ trpc
    │
    ├─ server
    │   └─ api
    │       └─ routers
    │
    ├─ styles
    │
    └─ utils