Modular logistics and supply chain operating system
Documentation
Β·
Cloud Version
Β·
Book a Demo
Β·
Discord
Fleetbase is a modular logistics and supply chain operating system designed to streamline management, planning, optimization, and operational control across various sectors of the supply chain industry.
Fleetbase is designed for organizations that need powerful logistics and supply chain management:
- E-commerce & Retail - Manage deliveries, track orders, and optimize last-mile logistics
- Food & Beverage - Coordinate restaurant deliveries, manage drivers, and track real-time orders
- Courier Services - Dispatch drivers, optimize routes, and provide customer tracking
- Field Services - Schedule technicians, manage service areas, and track job completion
- Enterprise Logistics - Build custom supply chain solutions with full API access
- Developers - Extend and customize with a modular architecture and comprehensive API
Quickstart
npm install -g @fleetbase/cli
flb install-fleetbase- Features
- Install
- Extensions
- Apps
- Roadmap
- Deployment Options
- Bugs and Feature Requests
- Documentation
- Contributing
- Community
- Creators
- License & Copyright
| Feature | Description |
|---|---|
| π Extensible | Build installable extensions and additional functionality directly into the OS via modular architecture. |
| π¨βπ» Developer Friendly | RESTful API, socket, and webhooks to seamlessly integrate with external systems or develop custom applications. |
| π± Native Apps | Collection of open-source and native apps designed for operations and customer facing. |
| π€ Collaboration | Dedicated chat and comments system for collaboration across your organization. |
| π Security | Secure data encryption, adherence to industry-standard security practices, and a comprehensive dynamic Identity and Access Management (IAM) system. |
| π‘ Telematics | Integrate and connect to hardware devices and sensors to provide more feedback and visibility into operations. |
| π Internationalized | Translate into multiple languages to accommodate diverse user bases and global operations. |
| βοΈ Framework | PHP core built around logistics and supply chain abstractions to streamline extension development. |
| π Dynamic | Configurable rules, flows and logic to enable automation and customization. |
| π¨ UI/UX | Clean, responsive user-friendly interface for efficient management and operations from desktop or mobile. |
| π Dashboards | Create custom dashboards and widgets to get full visibility into operations. |
| π Scalability | Uninterrupted growth with scalable infrastructure and design, capable of handling increasing data volume and user demand as your business expands. |
| π Continuous Improvements | Commitment to continuous improvement, providing regular updates that seamlessly introduce optimizations, new features, and overall enhancements to the OS. |
| π Open Source | Deploy it either on-premise or in the cloud according to your organization's needs and preferences. |
The easiest way to get started with Fleetbase is using the Fleetbase CLI, which automates the entire Docker-based installation process. If you'd like to use Fleetbase without Docker, read the full install guide in the Fleetbase documentation.
- Node.js (v14 or higher)
- Docker and Docker Compose
- Git
# Install the Fleetbase CLI globally
npm install -g @fleetbase/cli
# Run the interactive installer
flb install-fleetbaseYou can also use the install script directly:
git clone [email protected]:fleetbase/fleetbase.git
cd fleetbase && ./scripts/docker-install.shOnce successfully installed and running you can then access the Fleetbase console on port 4200 and the API will be accessible from port 8000.
Fleetbase Console: http://localhost:4200 Fleetbase API: http://localhost:8000
CORS: If you're installing directly on a server you will need to configure the environment variables to the application container:
CONSOLE_HOST=http://{yourhost}:4200
If you have additional applications or frontends you can use the environment variable FRONTEND_HOSTS to add a comma delimited list of additional frontend hosts.
Application Key If you get an issue about a missing application key just run:
docker compose exec application bash -c "php artisan key:generate --show"Next copy this value to the APP_KEY environment variable in the application container and restart.
Routing: Fleetbase ships with a default OSRM server hosted by router.project-osrm.org but you're able to use your own or any other OSRM compatible server. You can modify this in the console/environments directory by modifying the .env file of the environment you're deploying and setting the OSRM_HOST to the OSRM server for Fleetbase to use.
Services: There are a few environment variables which need to be set for Fleetbase to function with full features. If you're deploying with docker then it's easiest to just create a docker-compose.override.yml and supply the environment variables in this file.
version: "3.8"
services:
application:
environment:
CONSOLE_HOST: http://localhost:4200
MAIL_MAILER: (ses, smtp, mailgun, postmark, sendgrid)
OSRM_HOST: https://router.project-osrm.org
IPINFO_API_KEY:
GOOGLE_MAPS_API_KEY:
GOOGLE_MAPS_LOCALE: us
TWILIO_SID:
TWILIO_TOKEN:
TWILIO_FROM:
socket:
environment:
# IMPORTANT: Configure WebSocket origins for security
# Development (localhost only - include WebSocket protocols):
SOCKETCLUSTER_OPTIONS: '{"origins":"http://localhost:*,https://localhost:*,ws://localhost:*,wss://localhost:*"}'
# Production (replace with your actual domain):
# SOCKETCLUSTER_OPTIONS: '{"origins":"https://yourdomain.com:*,wss://yourdomain.com:*"}'WebSocket Security: The SOCKETCLUSTER_OPTIONS environment variable controls which domains can connect to the WebSocket server. Always restrict origins to your specific domains in production to prevent security vulnerabilities.
You can learn more about full installation, and configuration in the official documentation.
The Fleetbase CLI is a powerful tool for managing your Fleetbase instance. It simplifies installation, extension management, authentication, and development workflows.
Install the CLI globally with npm:
npm install -g @fleetbase/cli| Command | Description |
|---|---|
flb install-fleetbase |
Install Fleetbase using Docker with interactive setup |
flb set-auth <token> |
Set your registry authentication token for installing extensions |
flb search [query] |
Search and browse available extensions |
flb install <extension> |
Install an extension to your Fleetbase instance |
flb uninstall <extension> |
Uninstall an extension from your instance |
flb register |
Register a Registry Developer Account |
flb verify |
Verify your developer account email |
flb login |
Authenticate with the registry (for publishing extensions) |
flb scaffold |
Scaffold a new extension for development |
flb publish |
Publish an extension to the registry |
flb generate-token |
Generate or regenerate your registry authentication token |
Extensions are modular components that enhance the functionality of your Fleetbase instance. They allow you to add new features, customize existing behavior, or integrate with external systems.
flb search # list all extensions
flb search fleet # search by keyword
flb search --category logistics
flb search --free
flb search --json # machine-readable outputTo install extensions on a self-hosted instance:
# 1. Register an account (one-time)
flb register
# 2. Verify your email (one-time)
flb verify -e [email protected] -c verification-code
# 3. Generate your registry token
flb generate-token -e [email protected]
# 4. Set your authentication token
flb set-auth your-registry-token-here
# 5. Install an extension
flb install <extension>Example:
flb install fleetbase/pallet
flb install fleetbase/fleetopsYou can develop and publish your own extensions to extend Fleetbase's functionality or monetize through the marketplace. Learn more in the extension building guide.
# 1. Register a developer account (one-time)
flb register
# 2. Verify your email
flb verify -e [email protected] -c verification-code
# 3. Scaffold a new extension
flb scaffold
# 4. Authenticate for publishing
flb login -u your-username -p your-password -e [email protected]
# 5. Publish to the registry
flb publishFleetbase offers open-source mobile apps that can be customized and deployed:
| App | Description | Platform | Repository |
|---|---|---|---|
| Storefront App | E-commerce/on-demand app for launching your own shop or marketplace | iOS & Android | GitHub |
| Navigator App | Driver app for managing orders with real-time location tracking | iOS & Android | GitHub |
| Feature | Status | Expected Release | Description |
|---|---|---|---|
| Pallet (WMS) | π§ In Development | Late Q1 / Early Q2 2026 | Inventory and Warehouse Management extension |
| Ledger | π§ In Development | Late Q1 / Early Q2 2026 | Accounting and Invoicing extension |
| AI Agent | π¬ Research | Q4 2026 | AI integration for system and workflow automation |
| Dynamic Rules | π Planned | 2027 | Rule builder to trigger events, tasks, and jobs |
Want to influence our roadmap? Join the discussion
| Option | Best For | Setup Time | Maintenance |
|---|---|---|---|
| Docker (Local) | Development & Testing | 5 minutes | Self-managed |
| On-Premise | Production on your own infrastructure | 30-60 minutes | Self-managed |
| Cloud Self-Hosted | Production (AWS, GCP, Azure) | 30-60 minutes | Self-managed |
| Fleetbase Cloud | Quick start, no DevOps | Instant | Fully managed |
View detailed deployment guides β
Have a bug or a feature request? Please check the issue tracker and search for existing and closed issues. If your problem or idea is not addressed yet, please open a new issue.
Fleetbase has comprehensive documentation to help you get started and make the most of the platform:
- Getting Started: Installation Guide
- API Reference: API Documentation
- Extension Development: Building Extensions
- Deployment: Deployment Guides
We welcome contributions from the community! Here's how you can help:
- Report Bugs: Open an issue
- Suggest Features: Start a discussion
- Submit PRs: Read our Contributing Guide
- Write Documentation: Help improve our docs
- Build Extensions: Create and share extensions
Development Setup: See our Development Installation Guide for detailed instructions on setting up your local development environment.
Get updates on Fleetbase's development and chat with the project maintainers and community members by joining our Discord.
- Follow @fleetbase_io on X.
- Read and subscribe to The Official Fleetbase Blog.
- Ask and explore our GitHub Discussions.
See the Releases section of our GitHub project for changelogs for each release version of Fleetbase.
Release announcement posts on the official Fleetbase blog contain summaries of the most noteworthy changes made in each release.
Ronald A. Richardson Co-founder & CTO GitHub | LinkedIn |
Shiv Thakker Co-founder & CEO GitHub | LinkedIn |
Fleetbase is available under a dual-licensing model to accommodate both open-source community users and commercial enterprises:
By default, Fleetbase is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0). This license allows you to use, modify, and distribute Fleetbase freely, provided that:
- Any modifications or derivative works are also made available under AGPL-3.0
- If you run a modified version as a network service, you must make the source code available to users
The AGPL-3.0 is ideal for open-source projects, academic research, and organizations committed to sharing their improvements with the community.
For organizations that require more flexibility, Fleetbase offers a Fleetbase Commercial License (FCL) that provides:
- Freedom from AGPL obligations β Deploy and modify Fleetbase without source code disclosure requirements
- Proprietary integrations β Build closed-source extensions and integrations
- Commercial protections β Warranties, indemnities, and legal assurances not provided under AGPL
- Derivative work ownership β Retain full ownership of your modifications and customizations
- Flexible licensing options β Choose from annual, monthly, or perpetual license models
| License Type | Price | Support & Updates | Best For |
|---|---|---|---|
| Annual License | $25,000/year | β All upgrades & Business Support included | Organizations requiring continuous updates and support |
| Monthly License | $2,500/month | β All upgrades & Business Support included | Pilot projects and short-term deployments |
| Major Version License | $25,000 (one-time) | β No ongoing support | Stable deployments on a single major version |
| Minor Version License | $15,000 (one-time) | β No ongoing support | Locked version deployments |
You should consider a commercial license if you:
- Want to build proprietary extensions or integrations without open-sourcing them
- Need to embed Fleetbase in a commercial product without AGPL obligations
- Require enterprise-grade support, SLAs, and legal protections
- Plan to modify Fleetbase without sharing your changes publicly
For more information about commercial licensing options, please contact us:
- Email: [email protected]
- Website: fleetbase.io
Copyright Β© 2026 Fleetbase Pte. Ltd. All rights reserved.






