Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andres11152/erp_api

This repository contains the development of an ERP API that enables seamless integration with various business applications. The API facilitates data exchange for processes such as inventory management, accounting, and CRM, providing automation and streamlining workflows across different systems.
https://github.com/andres11152/erp_api

Last synced: about 1 month ago
JSON representation

This repository contains the development of an ERP API that enables seamless integration with various business applications. The API facilitates data exchange for processes such as inventory management, accounting, and CRM, providing automation and streamlining workflows across different systems.

Awesome Lists containing this project

README

        

# NET ERP API

Aplicación desarrollada por Andres Betancourt

## IDE Recomendado

- [VSCode](https://code.visualstudio.com/) + [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) + [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)

## INSTALACIÓN DEL PROYECTO

### Instalación

```bash
$ npm install
```

### deplegar aplicación en modo desarrollo de escritorio

```bash
$ npm run dev
```

### Desplegar el proyecto en modo producción

```bash
# Windows
$ npm run build:win

# macOS
$ npm run build:mac

# Linux
$ npm run build:linux
```
## Desplegar proyecto en modo desarollo web

### Acceder al directorio

```bash
# For windows
$ cd web

```

### Iniciar el servidor de desarrollo

```bash
# For windows
$ npm run dev

```