2026-03-14 15:20:30 +00:00
# @push.rocks/smartstorage
2024-10-26 14:14:41 +02:00
2026-03-14 15:20:30 +00:00
A high-performance, S3-compatible local storage server powered by a **Rust core ** with a clean TypeScript API. Drop-in replacement for AWS S3 during development and testing — no cloud, no Docker, no MinIO. Just `npm install` and go.
2024-04-14 18:16:08 +02:00
2025-11-21 17:09:16 +00:00
## Issue Reporting and Security
2025-11-23 22:53:39 +00:00
For reporting bugs, issues, or security vulnerabilities, please visit [community.foss.global/ ](https://community.foss.global/ ). This is the central community hub for all issue reporting. Developers who sign and comply with our contribution agreement and go through identification can also get a [code.foss.global/ ](https://code.foss.global/ ) account to submit Pull Requests directly.
2025-11-21 17:09:16 +00:00
2026-03-14 15:20:30 +00:00
## Why smartstorage?
2026-02-13 13:59:44 +00:00
2026-03-14 15:20:30 +00:00
| Feature | smartstorage | MinIO | s3rver |
|---------|-------------|-------|--------|
2026-02-13 13:59:44 +00:00
| Install | `pnpm add` | Docker / binary | `npm install` |
| Startup time | ~20ms | seconds | ~200ms |
2026-03-14 15:20:30 +00:00
| Large file uploads | Streaming, zero-copy | Yes | OOM risk |
| Range requests | Seek-based | Yes | Full read |
2026-02-13 13:59:44 +00:00
| Language | Rust + TypeScript | Go | JavaScript |
2026-03-14 15:20:30 +00:00
| Multipart uploads | Full support | Yes | No |
| Auth | AWS SigV4 (full verification) | Full IAM | Basic |
| Bucket policies | IAM-style evaluation | Yes | No |
2026-02-13 13:59:44 +00:00
### Core Features
2026-03-14 15:20:30 +00:00
- **Rust-powered HTTP server** — hyper 1.x with streaming I/O, zero-copy, backpressure
- **Full S3-compatible API** — works with AWS SDK v3, SmartBucket, any S3 client
- **Filesystem-backed storage** — buckets map to directories, objects to files
- **Streaming multipart uploads** — large files without memory pressure
- **Byte-range requests** — `seek()` directly to the requested byte offset
- **AWS SigV4 authentication** — full signature verification with constant-time comparison and 15-min clock skew enforcement
- **Bucket policies** — IAM-style JSON policies with Allow/Deny evaluation, wildcard matching, and anonymous access support
- **CORS middleware** — configurable cross-origin support
- **Structured logging** — tracing-based, error through debug levels
- **Clean slate mode** — wipe storage on startup for test isolation
- **Test-first design** — start/stop in milliseconds, no port conflicts
2021-12-18 01:41:50 +01:00
2026-03-14 15:20:30 +00:00
## Installation
2021-12-18 01:41:50 +01:00
2025-08-16 16:22:15 +00:00
```bash
2026-03-14 15:20:30 +00:00
pnpm add @push .rocks/smartstorage -D
2025-08-16 16:22:15 +00:00
```
2024-10-26 14:14:41 +02:00
2026-02-13 13:59:44 +00:00
> **Note:** The package ships with precompiled Rust binaries for `linux_amd64` and `linux_arm64`. No Rust toolchain needed on your machine.
2024-10-26 14:14:41 +02:00
2026-03-14 15:20:30 +00:00
## Quick Start
2024-10-26 14:14:41 +02:00
```typescript
2026-03-14 15:20:30 +00:00
import { SmartStorage } from '@push .rocks/smartstorage';
2024-10-26 14:14:41 +02:00
2026-03-14 15:20:30 +00:00
// Start a local S3-compatible storage server
const storage = await SmartStorage.createAndStart({
2026-02-13 13:59:44 +00:00
server: { port: 3000 },
storage: { cleanSlate: true },
2025-08-16 16:22:15 +00:00
});
2024-10-26 14:14:41 +02:00
2025-08-16 16:22:15 +00:00
// Create a bucket
2026-03-14 15:20:30 +00:00
await storage.createBucket('my-bucket');
2024-10-26 14:14:41 +02:00
2026-02-13 13:59:44 +00:00
// Get connection details for any S3 client
2026-03-14 15:20:30 +00:00
const descriptor = await storage.getStorageDescriptor();
// → { endpoint: 'localhost', port: 3000, accessKey: 'STORAGE', accessSecret: 'STORAGE', useSsl: false }
2024-10-26 14:14:41 +02:00
2026-02-13 13:59:44 +00:00
// When done
2026-03-14 15:20:30 +00:00
await storage.stop();
2024-10-26 14:14:41 +02:00
```
2024-04-14 18:16:08 +02:00
2026-03-14 15:20:30 +00:00
## Configuration
2024-04-14 18:16:08 +02:00
2026-02-13 13:59:44 +00:00
All config fields are optional — sensible defaults are applied automatically.
2024-04-14 18:16:08 +02:00
```typescript
2026-03-14 15:20:30 +00:00
import { SmartStorage, ISmartStorageConfig } from '@push .rocks/smartstorage';
2025-11-23 22:46:42 +00:00
2026-03-14 15:20:30 +00:00
const config: ISmartStorageConfig = {
2025-11-23 22:46:42 +00:00
server: {
2026-02-13 13:59:44 +00:00
port: 3000, // Default: 3000
address: '0.0.0.0', // Default: '0.0.0.0'
silent: false, // Default: false
2026-02-17 16:50:04 +00:00
region: 'us-east-1', // Default: 'us-east-1' — used for SigV4 signing
2025-11-23 22:46:42 +00:00
},
storage: {
2026-02-13 13:59:44 +00:00
directory: './my-data', // Default: .nogit/bucketsDir
cleanSlate: false, // Default: false — set true to wipe on start
2025-11-23 22:46:42 +00:00
},
auth: {
2026-02-13 13:59:44 +00:00
enabled: false, // Default: false
credentials: [{
accessKeyId: 'MY_KEY',
secretAccessKey: 'MY_SECRET',
}],
2025-11-23 22:46:42 +00:00
},
cors: {
2026-02-13 13:59:44 +00:00
enabled: false, // Default: false
allowedOrigins: ['*'],
allowedMethods: ['GET', 'POST', 'PUT', 'DELETE', 'HEAD', 'OPTIONS'],
allowedHeaders: ['*'],
exposedHeaders: ['ETag', 'x-amz-request-id', 'x-amz-version-id'],
maxAge: 86400,
allowCredentials: false,
2025-11-23 22:46:42 +00:00
},
logging: {
2026-02-13 13:59:44 +00:00
level: 'info', // 'error' | 'warn' | 'info' | 'debug'
format: 'text', // 'text' | 'json'
enabled: true,
2025-11-23 22:46:42 +00:00
},
limits: {
2026-02-13 13:59:44 +00:00
maxObjectSize: 5 * 1024 * 1024 * 1024, // 5 GB
maxMetadataSize: 2048,
requestTimeout: 300000, // 5 minutes
},
multipart: {
expirationDays: 7,
cleanupIntervalMinutes: 60,
2025-11-23 22:46:42 +00:00
},
2025-08-16 16:22:15 +00:00
};
2024-04-14 18:16:08 +02:00
2026-03-14 15:20:30 +00:00
const storage = await SmartStorage.createAndStart(config);
2025-11-23 22:46:42 +00:00
```
2026-02-13 13:59:44 +00:00
### Common Configurations
2025-11-23 22:46:42 +00:00
2026-02-13 13:59:44 +00:00
**CI/CD testing** — silent, clean, fast:
2025-11-23 22:46:42 +00:00
```typescript
2026-03-14 15:20:30 +00:00
const storage = await SmartStorage.createAndStart({
2026-02-13 13:59:44 +00:00
server: { port: 9999, silent: true },
2025-11-23 22:46:42 +00:00
storage: { cleanSlate: true },
});
```
2026-02-13 13:59:44 +00:00
**Auth enabled:**
2025-11-23 22:46:42 +00:00
```typescript
2026-03-14 15:20:30 +00:00
const storage = await SmartStorage.createAndStart({
2025-11-23 22:46:42 +00:00
auth: {
enabled: true,
2026-02-13 13:59:44 +00:00
credentials: [{ accessKeyId: 'test', secretAccessKey: 'test123' }],
2025-11-23 22:46:42 +00:00
},
});
```
2024-04-14 18:16:08 +02:00
2026-02-13 13:59:44 +00:00
**CORS for local web dev:**
2025-11-23 22:46:42 +00:00
```typescript
2026-03-14 15:20:30 +00:00
const storage = await SmartStorage.createAndStart({
2025-11-23 22:46:42 +00:00
cors: {
enabled: true,
2026-02-13 13:59:44 +00:00
allowedOrigins: ['http://localhost:5173'],
2025-11-23 22:46:42 +00:00
allowCredentials: true,
},
});
2024-04-14 18:16:08 +02:00
```
2026-03-14 15:20:30 +00:00
## Usage with AWS SDK v3
2025-11-23 22:46:42 +00:00
```typescript
2026-02-13 13:59:44 +00:00
import { S3Client, PutObjectCommand, GetObjectCommand, DeleteObjectCommand } from '@aws -sdk/client-s3';
2025-11-23 22:46:42 +00:00
2026-03-14 15:20:30 +00:00
const descriptor = await storage.getStorageDescriptor();
2025-11-23 22:46:42 +00:00
2026-02-13 13:59:44 +00:00
const client = new S3Client({
endpoint: `http://${descriptor.endpoint}:${descriptor.port}` ,
2025-11-23 22:46:42 +00:00
region: 'us-east-1',
credentials: {
2026-02-13 13:59:44 +00:00
accessKeyId: descriptor.accessKey,
secretAccessKey: descriptor.accessSecret,
2025-11-23 22:46:42 +00:00
},
2026-03-14 15:20:30 +00:00
forcePathStyle: true, // Required for path-style access
2025-11-23 22:46:42 +00:00
});
2026-02-13 13:59:44 +00:00
// Upload
await client.send(new PutObjectCommand({
2025-11-23 22:46:42 +00:00
Bucket: 'my-bucket',
2026-02-13 13:59:44 +00:00
Key: 'hello.txt',
2026-03-14 15:20:30 +00:00
Body: 'Hello, Storage!',
2025-11-23 22:46:42 +00:00
ContentType: 'text/plain',
}));
2026-02-13 13:59:44 +00:00
// Download
const { Body } = await client.send(new GetObjectCommand({
2025-11-23 22:46:42 +00:00
Bucket: 'my-bucket',
2026-02-13 13:59:44 +00:00
Key: 'hello.txt',
2025-11-23 22:46:42 +00:00
}));
2026-03-14 15:20:30 +00:00
const content = await Body.transformToString(); // "Hello, Storage!"
2025-11-23 22:46:42 +00:00
2026-02-13 13:59:44 +00:00
// Delete
await client.send(new DeleteObjectCommand({
Bucket: 'my-bucket',
Key: 'hello.txt',
}));
2025-11-23 22:46:42 +00:00
```
2024-04-14 18:16:08 +02:00
2026-03-14 15:20:30 +00:00
## Usage with SmartBucket
2024-04-14 18:16:08 +02:00
```typescript
2024-10-26 14:14:41 +02:00
import { SmartBucket } from '@push .rocks/smartbucket';
2026-03-14 15:20:30 +00:00
const smartbucket = new SmartBucket(await storage.getStorageDescriptor());
2026-02-13 13:59:44 +00:00
const bucket = await smartbucket.createBucket('my-bucket');
const dir = await bucket.getBaseDirectory();
2024-10-26 14:14:41 +02:00
2026-02-13 13:59:44 +00:00
// Upload
await dir.fastPut({ path: 'docs/readme.txt', contents: 'Hello!' });
2024-04-14 18:16:08 +02:00
2026-02-13 13:59:44 +00:00
// Download
const content = await dir.fastGet('docs/readme.txt');
2024-04-14 18:16:08 +02:00
2026-02-13 13:59:44 +00:00
// List
const files = await dir.listFiles();
2024-04-14 18:16:08 +02:00
```
2026-03-14 15:20:30 +00:00
## Multipart Uploads
2024-10-26 14:14:41 +02:00
2026-03-14 15:20:30 +00:00
For files larger than 5 MB, use multipart uploads. smartstorage handles them with **streaming I/O ** — parts are written directly to disk, never buffered in memory.
2024-10-26 14:14:41 +02:00
```typescript
2025-11-23 22:46:42 +00:00
import {
CreateMultipartUploadCommand,
UploadPartCommand,
2026-02-13 13:59:44 +00:00
CompleteMultipartUploadCommand,
2025-11-23 22:46:42 +00:00
} from '@aws -sdk/client-s3';
2026-02-13 13:59:44 +00:00
// 1. Initiate
const { UploadId } = await client.send(new CreateMultipartUploadCommand({
2025-11-23 22:46:42 +00:00
Bucket: 'my-bucket',
Key: 'large-file.bin',
}));
2026-02-13 13:59:44 +00:00
// 2. Upload parts
2025-11-23 22:46:42 +00:00
const parts = [];
2026-02-13 13:59:44 +00:00
for (let i = 0; i < chunks.length; i++) {
const { ETag } = await client.send(new UploadPartCommand({
2025-11-23 22:46:42 +00:00
Bucket: 'my-bucket',
Key: 'large-file.bin',
UploadId,
PartNumber: i + 1,
2026-02-13 13:59:44 +00:00
Body: chunks[i],
2025-11-23 22:46:42 +00:00
}));
2026-02-13 13:59:44 +00:00
parts.push({ PartNumber: i + 1, ETag });
2024-10-26 14:14:41 +02:00
}
2025-11-23 22:46:42 +00:00
2026-02-13 13:59:44 +00:00
// 3. Complete
await client.send(new CompleteMultipartUploadCommand({
2025-11-23 22:46:42 +00:00
Bucket: 'my-bucket',
Key: 'large-file.bin',
UploadId,
MultipartUpload: { Parts: parts },
}));
2025-08-16 16:22:15 +00:00
```
2024-10-26 14:14:41 +02:00
2026-03-14 15:20:30 +00:00
## Bucket Policies
2026-02-17 16:50:04 +00:00
2026-03-14 15:20:30 +00:00
smartstorage supports AWS-style bucket policies for fine-grained access control. Policies use the same IAM JSON format as real S3 — so you can develop and test your policy logic locally before deploying.
2026-02-17 16:50:04 +00:00
When `auth.enabled` is `true` , the auth pipeline works as follows:
1. **Authenticate ** — verify the AWS SigV4 signature (anonymous requests skip this step)
2. **Authorize ** — evaluate bucket policies against the request action, resource, and caller identity
3. **Default ** — authenticated users get full access; anonymous requests are denied unless a policy explicitly allows them
### Setting a Bucket Policy
Use the S3 `PutBucketPolicy` API (or any S3 client that supports it):
```typescript
import { PutBucketPolicyCommand } from '@aws -sdk/client-s3';
// Allow anonymous read access to all objects in a bucket
await client.send(new PutBucketPolicyCommand({
Bucket: 'public-assets',
Policy: JSON.stringify({
Version: '2012-10-17',
Statement: [{
Sid: 'PublicRead',
Effect: 'Allow',
Principal: '*',
Action: ['s3:GetObject'],
Resource: ['arn:aws:s3:::public-assets/*'],
}],
}),
}));
```
### Policy Features
- **Effect**: `Allow` and `Deny` (explicit Deny always wins)
- **Principal**: `"*"` (everyone) or `{ "AWS": ["arn:..."] }` for specific identities
- **Action**: IAM-style actions like `s3:GetObject` , `s3:PutObject` , `s3:*` , or prefix wildcards like `s3:Get*`
- **Resource**: ARN patterns with `*` and `?` wildcards (e.g. `arn:aws:s3:::my-bucket/*` )
- **Persistence**: Policies survive server restarts — stored as JSON on disk alongside your data
### Policy CRUD Operations
| Operation | AWS SDK Command | HTTP |
|-----------|----------------|------|
| Get policy | `GetBucketPolicyCommand` | `GET /{bucket}?policy` |
| Set policy | `PutBucketPolicyCommand` | `PUT /{bucket}?policy` |
| Delete policy | `DeleteBucketPolicyCommand` | `DELETE /{bucket}?policy` |
Deleting a bucket automatically removes its associated policy.
2026-03-14 15:20:30 +00:00
## Testing Integration
2025-08-16 16:22:15 +00:00
```typescript
2026-03-14 15:20:30 +00:00
import { SmartStorage } from '@push .rocks/smartstorage';
2026-02-13 13:59:44 +00:00
import { tap, expect } from '@git .zone/tstest/tapbundle';
2025-08-16 16:22:15 +00:00
2026-03-14 15:20:30 +00:00
let storage: SmartStorage;
2025-08-16 16:22:15 +00:00
2026-02-13 13:59:44 +00:00
tap.test('setup', async () => {
2026-03-14 15:20:30 +00:00
storage = await SmartStorage.createAndStart({
2026-02-13 13:59:44 +00:00
server: { port: 4567, silent: true },
storage: { cleanSlate: true },
2025-08-16 16:22:15 +00:00
});
});
2024-10-26 14:14:41 +02:00
2026-02-13 13:59:44 +00:00
tap.test('should store and retrieve objects', async () => {
2026-03-14 15:20:30 +00:00
await storage.createBucket('test');
2026-02-13 13:59:44 +00:00
// ... your test logic using AWS SDK or SmartBucket
2025-08-16 16:22:15 +00:00
});
2026-02-13 13:59:44 +00:00
tap.test('teardown', async () => {
2026-03-14 15:20:30 +00:00
await storage.stop();
2026-02-13 13:59:44 +00:00
});
2025-11-20 08:10:17 +00:00
2026-02-13 13:59:44 +00:00
export default tap.start();
2025-08-16 16:22:15 +00:00
```
2026-03-14 15:20:30 +00:00
## API Reference
2025-08-16 16:22:15 +00:00
2026-03-14 15:20:30 +00:00
### `SmartStorage` Class
2025-08-16 16:22:15 +00:00
2026-03-14 15:20:30 +00:00
#### `static createAndStart(config?: ISmartStorageConfig): Promise<SmartStorage>`
2025-08-16 16:22:15 +00:00
2026-02-13 13:59:44 +00:00
Create and start a server in one call.
2025-08-16 16:22:15 +00:00
2026-02-13 13:59:44 +00:00
#### `start(): Promise<void>`
2025-11-23 22:46:42 +00:00
2026-02-13 13:59:44 +00:00
Spawn the Rust binary and start the HTTP server.
2025-11-23 22:46:42 +00:00
2026-02-13 13:59:44 +00:00
#### `stop(): Promise<void>`
2025-11-23 22:46:42 +00:00
2026-02-13 13:59:44 +00:00
Gracefully stop the server and kill the Rust process.
2025-08-16 16:22:15 +00:00
2026-02-13 13:59:44 +00:00
#### `createBucket(name: string): Promise<{ name: string }>`
2025-08-16 16:22:15 +00:00
2026-03-14 15:20:30 +00:00
Create a storage bucket.
2025-11-23 22:46:42 +00:00
2026-03-14 15:20:30 +00:00
#### `getStorageDescriptor(options?): Promise<IS3Descriptor>`
2025-11-23 22:46:42 +00:00
2026-03-14 15:20:30 +00:00
Get connection details for S3-compatible clients. Returns:
2025-11-23 22:46:42 +00:00
2026-02-13 13:59:44 +00:00
| Field | Type | Description |
|-------|------|-------------|
| `endpoint` | `string` | Server hostname (`localhost` by default) |
| `port` | `number` | Server port |
| `accessKey` | `string` | Access key from first configured credential |
| `accessSecret` | `string` | Secret key from first configured credential |
| `useSsl` | `boolean` | Always `false` (plain HTTP) |
2025-11-23 22:46:42 +00:00
2026-03-14 15:20:30 +00:00
## Architecture
2025-11-23 22:46:42 +00:00
2026-03-14 15:20:30 +00:00
smartstorage uses a **hybrid Rust + TypeScript ** architecture:
2025-11-23 22:46:42 +00:00
2026-02-13 13:59:44 +00:00
```
┌─────────────────────────────────┐
│ Your Code (AWS SDK, etc.) │
│ ↕ HTTP (localhost:3000) │
├─────────────────────────────────┤
2026-03-14 15:20:30 +00:00
│ ruststorage binary (Rust) │
2026-02-13 13:59:44 +00:00
│ ├─ hyper 1.x HTTP server │
│ ├─ S3 path-style routing │
│ ├─ Streaming storage layer │
│ ├─ Multipart manager │
2026-02-17 16:50:04 +00:00
│ ├─ SigV4 auth + policy engine │
│ ├─ CORS middleware │
2026-02-13 13:59:44 +00:00
│ └─ S3 XML response builder │
├─────────────────────────────────┤
│ TypeScript (thin IPC wrapper) │
2026-03-14 15:20:30 +00:00
│ ├─ SmartStorage class │
2026-02-13 13:59:44 +00:00
│ ├─ RustBridge (stdin/stdout) │
│ └─ Config & S3 descriptor │
└─────────────────────────────────┘
```
2025-11-23 22:46:42 +00:00
2026-02-13 13:59:44 +00:00
**Why Rust?** The TypeScript implementation had critical perf issues: OOM on multipart uploads (parts buffered in memory), double stream copying, file descriptor leaks on HEAD requests, full-file reads for range requests, and no backpressure. The Rust binary solves all of these with streaming I/O, zero-copy, and direct `seek()` for range requests.
2025-11-23 22:46:42 +00:00
2026-03-14 15:20:30 +00:00
**IPC Protocol:** TypeScript spawns the `ruststorage` binary with `--management` and communicates via newline-delimited JSON over stdin/stdout. Commands: `start` , `stop` , `createBucket` .
2025-11-23 22:46:42 +00:00
2026-03-14 15:20:30 +00:00
### S3-Compatible Operations Supported
2025-08-16 16:22:15 +00:00
2026-02-13 13:59:44 +00:00
| Operation | Method | Path |
|-----------|--------|------|
| ListBuckets | `GET /` | |
| CreateBucket | `PUT /{bucket}` | |
| DeleteBucket | `DELETE /{bucket}` | |
| HeadBucket | `HEAD /{bucket}` | |
| ListObjects (v1/v2) | `GET /{bucket}` | `?list-type=2` for v2 |
| PutObject | `PUT /{bucket}/{key}` | |
| GetObject | `GET /{bucket}/{key}` | Supports `Range` header |
| HeadObject | `HEAD /{bucket}/{key}` | |
| DeleteObject | `DELETE /{bucket}/{key}` | |
| CopyObject | `PUT /{bucket}/{key}` | `x-amz-copy-source` header |
| InitiateMultipartUpload | `POST /{bucket}/{key}?uploads` | |
| UploadPart | `PUT /{bucket}/{key}?partNumber&uploadId` | |
| CompleteMultipartUpload | `POST /{bucket}/{key}?uploadId` | |
| AbortMultipartUpload | `DELETE /{bucket}/{key}?uploadId` | |
| ListMultipartUploads | `GET /{bucket}?uploads` | |
2026-02-17 16:50:04 +00:00
| GetBucketPolicy | `GET /{bucket}?policy` | |
| PutBucketPolicy | `PUT /{bucket}?policy` | |
| DeleteBucketPolicy | `DELETE /{bucket}?policy` | |
2025-08-16 16:22:15 +00:00
2026-02-13 13:59:44 +00:00
### On-Disk Format
2025-08-16 16:22:15 +00:00
2026-02-13 13:59:44 +00:00
```
{storage.directory}/
{bucket}/
2026-03-14 15:20:30 +00:00
{key}._storage_object # Object data
{key}._storage_object.metadata.json # Metadata (content-type, x-amz-meta-*, etc.)
{key}._storage_object.md5 # Cached MD5 hash
2026-02-13 13:59:44 +00:00
.multipart/
{upload-id}/
metadata.json # Upload metadata (bucket, key, parts)
part-1 # Part data files
part-2
...
2026-02-17 16:50:04 +00:00
.policies/
{bucket}.policy.json # Bucket policy (IAM JSON format)
2026-02-13 13:59:44 +00:00
```
2025-08-16 16:22:15 +00:00
2026-03-14 15:20:30 +00:00
## Related Packages
2025-08-16 16:22:15 +00:00
2026-03-14 15:20:30 +00:00
- [`@push.rocks/smartbucket` ](https://code.foss.global/push.rocks/smartbucket ) — High-level S3-compatible abstraction layer
- [`@push.rocks/smartrust` ](https://code.foss.global/push.rocks/smartrust ) — TypeScript <-> Rust IPC bridge
2026-02-13 13:59:44 +00:00
- [`@git.zone/tsrust` ](https://code.foss.global/git.zone/tsrust ) — Rust cross-compilation for npm packages
2025-11-23 22:46:42 +00:00
2024-04-14 18:16:08 +02:00
## License and Legal Information
2026-02-13 13:59:44 +00:00
This repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [LICENSE ](./LICENSE ) file.
2024-04-14 18:16:08 +02:00
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
### Trademarks
2021-12-18 01:41:50 +01:00
2026-02-13 13:59:44 +00:00
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH or third parties, and are not included within the scope of the MIT license granted herein.
Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines or the guidelines of the respective third-party owners, and any usage must be approved in writing. Third-party trademarks used herein are the property of their respective owners and used only in a descriptive manner, e.g. for an implementation of an API or similar.
2021-12-18 01:41:50 +01:00
2024-04-14 18:16:08 +02:00
### Company Information
2021-12-18 01:41:50 +01:00
2025-11-23 22:46:42 +00:00
Task Venture Capital GmbH
2026-02-13 13:59:44 +00:00
Registered at District Court Bremen HRB 35230 HB, Germany
2021-12-18 01:41:50 +01:00
2026-02-13 13:59:44 +00:00
For any legal inquiries or further information, please contact us via email at hello@task .vc.
2021-12-18 01:41:50 +01:00
2025-11-20 08:10:17 +00:00
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.