Convert any billing into FOCUS format
Narev is an open source, self-hosted FinOps platform. It allows translating SaaS data into a FOCUS 1.2 format, and exporting it.
Sources we support:
- AWS
- Azure
- GCP
- OpenAI
Exports we support:
- Snowflake
- CSV
- Excel
We ship with lightweight FOCUS-compliant analytics.
docker run -d \
--name narev \
-p 8000:8000 \
-v $(pwd)/data:/app/data \
-e DEMO="true" \
ghcr.io/narevai/narev:latestFirst, generate an encryption key:
python -c "from cryptography.fernet import Fernet; \
print(Fernet.generate_key().decode())"Then run the container with your generated key:
docker run -d \
--name narev-prod \
-p 8000:8000 \
-v $(pwd)/data:/app/data \
-e ENCRYPTION_KEY="gAAAAABhZ_your_actual_generated_key_here" \
-e ENVIRONMENT="production" \
ghcr.io/narevai/narev:latest- Full production setup in the Deployment Guide.
Apache 2.0
Thanks to @satnaing for the excellent front end starter