Usage
frontier dotnet <command>
The help menu can be accessed with the command:
frontier dotnet --help
Options
Usage:
frontier dotnet <command>
Commands:
add - add a module to a project
create-project - Scaffold a new project
migrate - manage migrations for a database
Options:
--help - Show help information
Now we can start using the CLI if the installation was successful.
Create a project
frontier dotnet create-project <project-name>
Replace
with the actual name of your project. Preferrably written in Pascal case (eg. MyCoolApi
). Learn more on the CLI Command Reference
Example
frontier dotnet create-project MyCoolApi