Quick Start

Get up and running with Dark Storage in under 5 minutes.

1. Create an Account

Sign up for a free account at console.darkstorage.io

2. Install the CLI

curl -sSL https://darkstorage.io/install.sh | sh

3. Configure Your API Key

Get your API key from the console and configure the CLI:

darkstorage config set --key YOUR_API_KEY

4. Upload Your First File

# Create a bucket
darkstorage bucket create my-bucket

# Upload a file
darkstorage put ./myfile.txt my-bucket/

# List files
darkstorage ls my-bucket/

5. Share a File

# Create a share link (expires in 24 hours)
darkstorage share my-bucket/myfile.txt --expires 24h

# Create a password-protected link
darkstorage share my-bucket/myfile.txt --password "secret123"