Shipdeo is a comprehensive 3PL (Third-Party Logistics) aggregator platform that empowers Indonesian online businesses to efficiently manage their shipping operations. The platform aggregates multiple courier services, provides discounts starting at 20%, minimizes return rates, offers transparent COD handling with a fixed 3% fee, and seamlessly integrates with various e-commerce platforms including Shopify and WooCommerce.
.
├── Dockerfile # Dockerfile
├── README.md # README.md
├── apps
│ ├── auth-api # Auth API defined in a NestJS dedicated project inside this monorepo
│ ├── event-partner # Event Partner defined in a NestJS dedicated project inside this monorepo
│ ├── kafka-processor # Kafka Processor defined in a NestJS dedicated project inside this monorepo
│ ├── main-api # Main API defined in a NestJS dedicated project inside this monorepo
│ ├── partner-api # Partner API defined in a NestJS dedicated project inside this monorepo
│ └── portal-api # Portal API defined in a NestJS dedicated project inside this monorepo
├── jest.config.js # Jest configuration file
├── libs
│ ├── clodeo-library-js # Code libraries for javascript only helpers/services
│ ├── clodeo-library-microservice # Code libraries for microservice helpers/services
│ ├── clodeo-library-nestjs # Code libraries for NestJS helpers/services
│ ├── clodeo-library-node # Code libraries for Node.js helpers/services
│ ├── clodeo-mongo-logging-db # Code libraries for MongoDB logging database
│ ├── shipdeo-db # Shipdeo database defined in a library so apps can access this database including its entities
│ └── shipdeo-shared # Shipdeo shared services that related to business logic
├── nx.json # Nx configuration file
├── package-lock.json # Package lock file
├── package.json # Package configuration file
├── tsconfig.json # TypeScript configuration file
├── tslint.json # TypeScript linting configuration file
└── workspace.json # Nx workspace configuration file
- Developed libraries including javascript only helpers/services, microservice helpers/services, NestJS helpers/services, Node.js helpers/services.