New Tiers availableMore feature, Up to 10 Million AI-Tokens for free
Read blog postJeder Fairu-Account enthält RAKU, unser S3-kompatibles Storage-Gateway. Nutze deine Lieblingstools wie AWS CLI, Transmit oder Cyberduck, um deine Assets direkt zu verwalten — mit der vollen Power von Fairus Transformations-Engine.
S3-Kompatibilität, Fairu-Power

RAKU works with any S3-compatible application out of the box.
Use familiar AWS commands to manage your files
Premium macOS file transfer with full S3 support
Free, open-source cloud storage browser
Windows client for S3-compatible storage
Native S3 filesystem driver support
Works with any tool supporting S3 API
Verbinde deine Tools mit Fairu in Minuten über unseren S3-kompatiblen Endpoint.
Generiere deinen Access Key und Secret Key im Fairu Dashboard unter Einstellungen → RAKU.
Füge deine Zugangsdaten zu AWS CLI, Transmit, Cyberduck oder jedem S3-kompatiblen Tool hinzu.
aws configure --profile fairu
# Access Key ID: <your-key>
# Secret Access Key: <your-secret>
# Region: eu-central-1Liste, lade hoch, lade herunter und synchronisiere deine Dateien mit vertrauten S3-Befehlen.
Nutze Standard-S3-Befehle und SDKs, die du bereits kennst. Keine proprietären APIs zu lernen.
# List all buckets
aws s3 ls --profile fairu --endpoint-url https://raku.fairu.app
# List files in a bucket
aws s3 ls s3://your-tenant-id --profile fairu --endpoint-url https://raku.fairu.app
# Upload a file
aws s3 cp image.jpg s3://your-tenant-id/folder/ --profile fairu --endpoint-url https://raku.fairu.app
# Download a file
aws s3 cp s3://your-tenant-id/folder/image.jpg ./ --profile fairu --endpoint-url https://raku.fairu.app
# Sync a directory
aws s3 sync ./local s3://your-tenant-id/remote --profile fairu --endpoint-url https://raku.fairu.app// config/filesystems.php
'disks' => [
'fairu' => [
'driver' => 's3',
'key' => env('FAIRU_RAKU_KEY'),
'secret' => env('FAIRU_RAKU_SECRET'),
'region' => 'eu-central-1',
'bucket' => env('FAIRU_TENANT_ID'),
'endpoint' => 'https://raku.fairu.app',
'use_path_style_endpoint' => true,
],
],
// Usage in your application
Storage::disk('fairu')->put('folder/file.jpg', $contents);
Storage::disk('fairu')->get('folder/file.jpg');
Storage::disk('fairu')->url('folder/file.jpg');Erstelle deine RAKU-Zugangsdaten im Dashboard und nutze S3-kompatible Tools in Minuten.