- Renamed all class names: Daytona → HanzoRuntime - Updated error classes: DaytonaError → HanzoRuntimeError - Changed config classes: DaytonaConfig → HanzoRuntimeConfig - Updated environment variables: DAYTONA_* → HANZO_RUNTIME_* - Fixed all import statements and file references - Updated copyright headers to Hanzo Industries Inc - Changed default API URL to https://app.hanzo.ai/api - Renamed source files to match new class names - Incremented version to 0.0.1-dev for republishing
10 lines
346 B
Bash
10 lines
346 B
Bash
# NPM Authentication
|
|
# Get token from: https://www.npmjs.com/settings/YOUR_USERNAME/tokens
|
|
# Choose "Automation" type to bypass 2FA
|
|
NPM_TOKEN=npm_YOUR_TOKEN_HERE
|
|
|
|
# PyPI Authentication
|
|
# Get token from: https://pypi.org/manage/account/token/
|
|
# Use __token__ as username when prompted
|
|
TWINE_USERNAME=__token__
|
|
TWINE_PASSWORD=pypi-YOUR_TOKEN_HERE |