Skip to content
This repository was archived by the owner on Apr 11, 2026. It is now read-only.

Latest commit

 

History

History
50 lines (39 loc) · 1.1 KB

File metadata and controls

50 lines (39 loc) · 1.1 KB
title Project Structure
description Understanding the Openinary monorepo structure
Openinary is organized as a monorepo with the following structure:
openinary/
├── apps/
│   ├── api/          # Media processing API
│   └── web/          # Next.js Frontend
├── packages/
│   └── shared/       # Shared types and utilities
├── docker/           # Optimized Dockerfiles
└── docker-compose.yml

Apps

The main media processing API that handles transformations, uploads, and delivery Next.js frontend application for managing media

Packages

Shared TypeScript types and utilities used across apps

Docker

Contains optimized Dockerfiles for containerized deployments Docker Compose configuration for local development