-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
LoSkroefie edited this page Jan 21, 2025
·
1 revision
- .NET 8.0 or higher
- Git (optional, for development)
- Using .NET Tool
dotnet tool install -g flexon-cli- Using Homebrew (macOS)
brew install flexon-cli- Using Chocolatey (Windows)
choco install flexon-cli- Manual Installation
- Download the latest release from GitHub
- Extract to your preferred location
- Add to system PATH
flexon-cli serialize -i input.json -o output.flexonflexon-cli deserialize -i input.flexon -o output.jsonflexon-cli serialize -i config.json -i image.png -o package.flexonflexon-cli serialize -i data.json -o secure.flexon -e myKeyflexon-cli serialize -i data.json -o valid.flexon -s schema.json# Store configuration
flexon-cli serialize -i config.json -o app_config.flexon
# Store with encryption
flexon-cli serialize -i config.json -o secure_config.flexon -e myKey
# Store multiple files
flexon-cli serialize -i config.json -i assets.png -o package.flexon# Store AI prompts
flexon-cli serialize -i prompts.json -o ai_prompts.flexon -s prompt_schema.json
# Package training data
flexon-cli serialize -i training.json -i embeddings.bin -o ai_package.flexon# Save game state
flexon-cli serialize -i state.json -i screenshots.png -o save.flexon -e gameKey
# Load game state
flexon-cli deserialize -i save.flexon -o ./game_data -e gameKey- Explore Command Reference for detailed command information
- Check Examples for more use cases
- Learn about AI Features for AI data management
- Read Security Guide for best practices