Installation
The only requirement to use Azu is the Crystal Language itself
Bigger applications
In order to build a full-featured Azu application, you will need a few dependencies installed.
the Crystal Programming Language - installation instruction can be found here
Shards command line tool for package management (Installed by default with Crystal installation)
a database - Azu recommends PostgreSQL but you can pick others or not use a database at all
Node.js for assets - which can be opt-out, especially if you are building APIs
Azu Installation
Add the dependency to your
shard.yml
:Run
shards install
Summary
At the end of this section, you must have installed Crystal, Shards, PostgreSQL and Node.js. Now that we have everything installed, let's define our first Azu application.
Last updated