Troubleshooting

This section provides solutions to common issues encountered during setup and development.

Command Not Found

# Ensure global installation
pnpm add -g ao-forge

# Or fix npm global permissions
sudo chown -R $USER /usr/local/lib/node_modules

AOS Not Installed

# Install AOS CLI
npm i -g https://get_ao.g8way.io

Development Server Issues

# Check if port is in use
lsof -i :3000
# Kill process if needed
kill -9 <PID>