Installation
This guide will guide you to a minimal installation that’ll work while you walk through the introduction.
Getting Started with Docker
If you already know what docker is and want to take a quick jump into altair configuration and implementation, you can use this section as your guide.
Run Altair with Docker-Compose
We are at the dockerhub! A common implementation of the docker Altair is to have a directory where you store the config and routes folders in it.
config/
routes/
migration/
.env
docker-compose.yml
The docker-compose content could look like this:
version: "3.8"
services:
altair:
image: codefluence/altair:latest
volumes:
- ./routes/:/opt/altair/routes/
- ./config/:/opt/altair/config/
- ./.env:/opt/altair/.env
ports:
- "1304:1304"
network_mode: host
env_file: ./.env
After that, you can start Altair with the command docker-compose up
. It will serve Altair in http://localhost:1304.
Getting Started with Window, Linux and Mac
If you don’t have a docker on your computer, don’t worry we also support manual downloading.
Download Altair
You can download the latest Altair release here based on your operating system.
OS | Download Link |
---|---|
Linux | Download |
Windows | Download |
Mac | Download |
Unpack and Running
After you unzip your zip file, it should look like this.
config/
routes/
migration/
altair
Copy your env.sample
file into .env
, then run the command below to see Altair’s configuration.
./altair config all
Run your Altair api gateway with
./altair run