The command triggers the deploy builder for a certain project, that is why the syntax for it is
ng deploy project-name
Once you call it you will be given a deploy
settings in your angular.json file like this
"projects": {
"my-project": {
...
"architect": {
...
"deploy": {
"builder": "@angular/fire:deploy",
"options": {}
}
}
}
}