Getting Started with ARIA¶
This guide will help you get started with ARIA quickly and efficiently.
Installation¶
Local Development Installation¶
If you're working on ARIA itself or want to install from a local copy:
# Clone the repository
git clone https://github.com/antenore/ARIA.git
cd ARIA
# Install in development mode
python -m pip install --user -e .
Note: After installation, the
ariacli
command might not be available in your PATH. You can either: 1. Add the Python Scripts directory to your PATH (typically%APPDATA%\Python\Python3xx\Scripts
on Windows) 2. Use the full path to the executable:%APPDATA%\Python\Python3xx\Scripts\ariacli.exe
3. Create an alias in your shell profile
Basic Usage¶
-
Initialize a new policy:
-
Apply a template:
-
Validate your policy:
Next Steps¶
- Learn about policy inheritance
- Explore templates
- Check out the CLI reference
Common Issues¶
- Permission errors
- Template compatibility
- Policy validation failures
Best Practices¶
- Always validate policies
- Use version control
- Document policy changes
- Test before deployment