Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/kulichkoff/kulichkoff-erp
- Owner: kulichkoff
- Created: 2022-07-25T09:26:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-09T21:08:06.000Z (about 2 years ago)
- Last Synced: 2023-05-15T11:31:47.222Z (over 1 year ago)
- Topics: angular, monorepo, nodejs, typescript
- Language: TypeScript
- Homepage: https://kulichkoff.space
- Size: 409 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```