Skip to content

Getting Started

Jesse Visser edited this page Feb 20, 2024 · 2 revisions

Installation

You can create a new project using Composer:

composer create-project flowan/laravel-warehouse

You can run the application using the following command:

sail up -d

Or using the built-in PHP server:

php artisan serve

Create a user

You can create a new user using the following command:

php artisan make:filament-user

Create a bucket

In order to store files, you need to create a bucket. You can create a new bucket in the admin panel.

Create a token

You can create a new token in the admin panel.

A token is required to authenticate requests to the storage.

Configure HTTP adapter

Add https://github.com/flowan/laravel-filesystem-http to your project. Check the README.md to configure the adapter.

Clone this wiki locally