Skip to content

fleetbase/fleetbase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

1,129 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Fleetbase logo

License Latest Release GitHub Stars Discord GitHub Issues

Modular logistics and supply chain operating system
Documentation Β· Cloud Version Β· Book a Demo Β· Discord


What is Fleetbase?

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 Console

🎯 Who Is Fleetbase For?

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

Visual Feature Showcase

Feature Screenshot Description
Order Board Fleetbase Order Board Visualize and manage your orders with a dynamic Kanban board.
Order Config Fleetbase Order Configuration Create custom order configurations with logic, rules, automation, activity flows, and custom fields.
Order Tracking Fleetbase Order Map View Track individual orders in real-time on an interactive map.
Live Fleet Map Fleetbase Live Map Tracking Get a complete overview of your fleet and active orders on a live map.
Service Zones Fleetbase Fleet Map with Zones Define and manage service areas and zones for your fleet.

Quickstart

npm install -g @fleetbase/cli
flb install-fleetbase

πŸ“– Table of contents

πŸ“¦ Features

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.

πŸ’Ύ Install

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.

Prerequisites

  • Node.js (v14 or higher)
  • Docker and Docker Compose
  • Git

Quick Install with CLI

# Install the Fleetbase CLI globally
npm install -g @fleetbase/cli

# Run the interactive installer
flb install-fleetbase

Alternative Install Script

You can also use the install script directly:

git clone [email protected]:fleetbase/fleetbase.git  
cd fleetbase && ./scripts/docker-install.sh

Accessing Fleetbase

Once 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

Additional Configurations

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.

⌨️ Fleetbase CLI

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

Available Commands

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

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.

Browsing Extensions

flb search              # list all extensions
flb search fleet        # search by keyword
flb search --category logistics
flb search --free
flb search --json       # machine-readable output

Installing Extensions

To 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/fleetops

Developing Extensions

You 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 publish

πŸ“± Apps

Fleetbase 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

πŸ›£οΈ Roadmap

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

πŸš€ Deployment Options

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 β†’

πŸ› Bugs and πŸ’‘ Feature Requests

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.

πŸ“„ Documentation

Fleetbase has comprehensive documentation to help you get started and make the most of the platform:

🀝 Contributing

We welcome contributions from the community! Here's how you can help:

Development Setup: See our Development Installation Guide for detailed instructions on setting up your local development environment.

πŸ‘₯ Community

Get updates on Fleetbase's development and chat with the project maintainers and community members by joining our Discord.

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.

Creators

Ronald A. Richardson
Ronald A. Richardson
Co-founder & CTO
GitHub | LinkedIn
Shiv Thakker
Shiv Thakker
Co-founder & CEO
GitHub | LinkedIn

License & Copyright

Fleetbase is available under a dual-licensing model to accommodate both open-source community users and commercial enterprises:

Open Source License (AGPL-3.0)

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.

Commercial License (FCL)

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

Commercial License Options

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

When You Need a Commercial License

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

Get a Commercial License

For more information about commercial licensing options, please contact us:


Copyright Β© 2026 Fleetbase Pte. Ltd. All rights reserved.