Logo Lanfrica

Spectre-Techie/factorylink

Domaine:

digital infrastructure

Type de record:

software
Créateur:
Spe
Hôte:
Offline-first manufacturing coordination platform powered by Africa's Talking APIs. # FactoryLink FactoryLink is an offline-first manufacturing coordination platform that connects factories, distributors, technicians, and management through web, USSD, SMS, and voice channels. The system is designed for operational coordination in environments with limited connectivity and device access, making critical workflows resilient even when smartphones and stable internet are unavailable. ## Why FactoryLink Factory operations often fail not because of lack of information, but because information is fragmented across calls, SMS threads, manual logs, and field visits. FactoryLink aims to unify operational coordination into a simple platform that works in constrained environments while staying practical for a solo developer or small team. ## Core goals - Give factory managers a single operational view across work orders, technicians, and inventory. - Support field coordination through low-bandwidth channels such as USSD, SMS, and voice. - Keep workflows usable even when connectivity is intermittent or unavailable. - Reduce missed maintenance, delayed parts dispatch, and unclear operational handoffs. - Provide a lightweight architecture suitable for rapid deployment and hackathon-scale validation. ## Stack - Next.js - TypeScript - Tailwind CSS - Node.js - Express - Supabase PostgreSQL - Africa's Talking APIs - Docker - GitHub ## Project structure ```text factorylink/ ├── README.md ├── .env.example ├── .gitignore ├── package.json ├── tsconfig.json ├── tsconfig.server.json ├── docs/ │ ├── PRD.md │ ├── MVP.md │ ├── ARCHITECTURE.md │ ├── DATABASE.md │ ├── API.md │ ├── AT-INTEGRATION.md │ ├── MARKETPLACE.md │ ├── SECURITY.md │ └── DEVELOPMENT.md ├── app/ │ ├── (dashboard) │ ├── api/ │ ├── globals.css │ └── layout.tsx ├── components/ │ ├── ui/ │ └── layout/ ├── lib/ │ ├── config/ │ ├── utils/ │ └── validation/ ├── server/ │ ├── src/ │ └── src/routes/ ├── types/ ├── public/ ├── docker/ │ ├── Dockerfile │ └── docker- …