Skip to content

fleetbase/fleetbase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

1,108 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.
Workflow Builder Fleetbase Order Workflow Configuration Create custom order flows and automation with the intuitive workflow builder.
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

git clone git@github.com:fleetbase/fleetbase.git  
cd fleetbase && ./scripts/docker-install.sh

πŸ“– 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

Getting up and running with Fleetbase via Docker is the quickest and most straightforward way. If you'd like to use Fleetbase without docker read the full install guide in the Fleetbase documentation.

Make sure you have both the latest versions of docker and docker-compose installed on your system.

git clone git@github.com: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.

🧩 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.

You can find extensions available from the official Fleetbase Console, here you will also be able get your registry token to install extensions to a self-hosted Fleetbase instance.

Additionally you're able to develop and publish your own extensions as well which you can read more about developing extensions via the extension building guide.

⌨️ Fleetbase CLI

The Fleetbase CLI is a powerful tool designed to simplify the management of extensions for your Fleetbase instance. With the CLI, you can effortlessly handle authentication, install and uninstall extensions, and scaffold new extensions if you are developing your own.

Get started with the CLI with npm:

npm i -g @fleetbase/cli

Once installed, you can access a variety of commands to manage your Fleetbase extensions.

πŸ“± 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.