We use cookies to enhance your browsing experience, analyze site traffic, and personalize content. By clicking "Accept All", you consent to our use of cookies. Learn more
Follow these simple steps to get AsterMind-ELM, AsterMind-ELM Pro and AsterMind-ELM Premium up and running in minutes.
AsterMind-ELM uses a centralized license configuration system that automatically propagates your license to AsterMind-ELM, AsterMind-ELM Pro and AsterMind-ELM Premium.
In your project directory create the file: src/config/license-config.ts
And place the following content into the license-config.ts file.
export const LICENSE_TOKEN: string | null = 'YOUR_LICENSE_TOKEN_HERE';The license will be automatically initialized when you import from @astermind/astermind-elm,@astermind/astermind-pro,@astermind/astermind-premium.
Set the ASTERMIND_LICENSE_TOKEN environment variable:
# Linux/Mac
export ASTERMIND_LICENSE_TOKEN="your-license-token-here"
# Windows
set ASTERMIND_LICENSE_TOKEN=your-license-token-here
# Or in .env file
ASTERMIND_LICENSE_TOKEN=your-license-token-hereimport { initializeLicense, setLicenseTokenFromString } from '@astermind/astermind-pro';
// Initialize the license system
initializeLicense();
// Set your license token
await setLicenseTokenFromString('your-license-token-here');#!/bin/bash
set -e
echo "🔧 Creating license configuration..."
# Create directory
mkdir -p ./src/config
# Create file
cat > ./src/config/license-config.ts << 'EOF'
export const LICENSE_TOKEN: string | null = 'YOUR_LICENSE_TOKEN_HERE';
EOF
echo "✓ Created ./src/config/license-config.ts"
echo ""
echo "⚠️ Remember to replace YOUR_LICENSE_TOKEN_HERE with your actual token!"src/config/license-config.tsASTERMIND_LICENSE_TOKEN environment variable@astermind/astermind-proUse npm to install the AsterMind-ELM package:
npm install @astermind/astermind-elmnpm install @astermind/astermind-pronpm install @astermind/astermind-premium