The official command-line interface for the CodeVault platform. Manage projects, licenses, and run builds locally or in the cloud.
pip install codevault-clicodevault [COMMAND] [OPTIONS]Authenticate with the CodeVault platform.
codevault loginCompile your application with license protection.
# Build the project in the current directory
codevault build
# Build a specific project ID
codevault build <project_id>
# Build options
codevault build --fast # Enable Fast Mode (directory output, no onefile)
codevault build --jobs 4 # Use 4 CPU cores for compilation
codevault build --license <key> # Embed a specific license keyBuild Modes:
- Standard (Default): Produces a single
.exefile. Slower (~20 mins) but easier to distribute. - Fast Mode (
--fast): Produces a directory. 3-4x faster. Best for testing.
List all your projects.
codevault projectsManage licenses for a project.
codevault licenses <project_id>Check your current login status and environment health (Nuitka/Pkg installation).
codevault statusIf you are developing the CLI itself:
cd cli
pip install -e .