I've started using Alloy UI by using CDNs at http://cdn.alloyui.com/3.0.0/aui/aui-min.js.
Is it possible to use Alloy UI locally without having to connect with the CDNs? So install something locally which serves the required files. We'd like to do this so we don't have any external dependencies, for instance if our external internet connection is disabled we'd still like to use our internal apps which may rely on this.
All you need to do is grab the latest release of AlloyUI (3.0.1
)*, unzip it, and include it in your page like so:
<script src="/path/to/alloy-3.0.1/build/aui/aui-min.js"></script>
You may also want to include bootstrap similarly:
<link src="/path/to/alloy-3.0.1/build/aui-css/css/bootstrap.min.css" rel="stylesheet"></link>
There's a more in depth guide here if you need it.
*For other releases of AlloyUI see the releases page.