Team Collaboration
May 30, 2026 | 5 min read
Shared Configuration
Store thin_config.json in a shared secrets manager or repository (without the license key):
{
"api_base_url": "https://api.pyvorin.com",
"telemetry_enabled": true,
"request_timeout_seconds": 30
}
Each team member sets their own license key via PYVORIN_THIN_LICENSE_KEY.
Shared Cache
Mount a shared network volume at ~/.pyvorin/cache so compiled artifacts are reused across team members:
nfs:/shared/pyvorin-cache /home/dev/.pyvorin/cache nfs defaults 0 0
License Pools
Enterprise licenses support multiple seats. Contact support to add or remove team members from your license pool.
Best Practices
- Use CI to pre-compile and cache artifacts for the whole team.
- Document which functions are compiled in your project README.
- Share benchmark results in pull request descriptions.