Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kulichkoff/kulichkoff-erp

My ERP system to manage my father's little business.
https://github.com/kulichkoff/kulichkoff-erp

angular monorepo nodejs typescript

Last synced: about 2 months ago
JSON representation

My ERP system to manage my father's little business.

Awesome Lists containing this project

README

        

# KULICHKOFF's ERP

This project is a little ERP-system. It includes admin panel and BackEnd with NestJS.

In the current time, I work on admin panel.

## NX

This project uses NX as a tool for mono-repository management.

### Run

You can run the project, using the command below:

```shell
yarn nx run [application-name]:serve
```

## What I want to do in the future

- [x] Use Docker to deploy this microservice architecture.
- [x] Documents generation.
- [ ] Smart RxJS unsubscribe with `@ngneat/until-destroy`

## Migrations

Migrations run remotely in manual mode.

To migrate, you have to generate new migration

```shell
POSTGRES_PASSWORD= POSTGRES_HOST= yarn migration:generate
```

After that, there is a possibility to run the migration

```shell
POSTGRES_PASSWORD= POSTGRES_HOST= yarn migrate
```