CLI Overview
An overview of how the Funcy Azure CLI works
The Funcy Azure Framework is mostly a command line utility that makes it easy to manage your serverless projects. We've designed the CLI to be as user-friendly as possible. A typical Funcy Azure command consists of a context and an action, along with some options where applicable. For example, look at the following command:
$ faz project create -n project-name -l https://github.com/arafato/myproject.git
This command has a "project" context, and a "create" action. -n project-name
and -l https://github.com/arafato/myproject.git
are both options that the faz project create
command needs.
Nifty Shortcuts
It is a bit tedious to type
funcy-azure
every time you want to do something. You can use thefaz
(which we have used throughout the entire documentation) orfuncy
shortcut instead. Nice one, ha!
Updated less than a minute ago