Preview 🔎
Preview your awesome project locally
The Brimble CLI has an option that allows you to see your final project locally before deployment right from the project directory/folder. When testing your web app or website on your local PC, this is a great way to discover any deployment issues before they become a problem. This can be accomplished by running the following command.
brimble dev [options] [project directory]
Brimble CLI allows a couple of options to be passed in while running the dev command, these include:
Shortcut | Option | Function |
---|---|---|
-p <port> | --port <port> | Specify a port to run your project on |
-o | --open | Open the browser when the server starts |
-so | --start-only | Start the server ONLY without opening the browser |
none | --build-command <buildCommand> | Specify a build command for your project; Brimble CLI can also automatically identify a build command if none is specified |
none | --output-directory <outputDirectory> | Specify an output directory for your project once the build command has been executed |
Now that you've confirmed that your project looks awesome as intended, let's take a look at how to actually deploy your project 😎
Last modified 1yr ago