forked from ruvnet/RuVector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (30 loc) · 1.13 KB
/
.env.example
File metadata and controls
37 lines (30 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Ruvector - Environment Configuration Example
# Copy this file to .env and update with your actual values
# NEVER commit .env to version control!
# ============================================
# Crates.io Publishing
# ============================================
# Get your API token from: https://crates.io/me
# Required for publishing crates to crates.io
CRATES_API_KEY=your-crates-io-api-token-here
# ============================================
# Development & Testing
# ============================================
# Log level (trace, debug, info, warn, error)
RUST_LOG=info
# Enable backtrace on panic
RUST_BACKTRACE=1
# ============================================
# Optional: Build Configuration
# ============================================
# Number of parallel jobs for compilation
# CARGO_BUILD_JOBS=4
# Target directory for build artifacts
# CARGO_TARGET_DIR=target
# ============================================
# Optional: Benchmark Configuration
# ============================================
# Number of iterations for benchmarks
# BENCHMARK_ITERATIONS=100
# Dataset size for performance tests
# BENCHMARK_DATASET_SIZE=1000000