Yes you can! By default, astro airflow start
will start your project with the Airflow web server exposed at port 8080 and postgres exposed at 5432. You can change this by specifying the ports you want used in your config.yaml file.
project:
name: demo
webserver:
port: 8081
postgres:
port: 5435
Note: Your config.yaml
file is in a hidden .astro
directory in the initialized project folder. You can find it by either opening your project in a text editor or by running ls -a
from the command line.