dev
Local dev server The dev command will run a local dev server with Netlify's proxy and redirect rules
Usage
netlify dev
Flags
command
(string) - command to runcontext
(string) - Specify a deploy context or branch for environment variables (contexts: "production", "deploy-preview", "branch-deploy", "dev")country
(string) - Two-letter country code (https://ntl.fyi/country-codes) to use as mock geolocation (enables --geo=mock automatically)dir
(string) - dir with static filesedge-inspect
(string) - enable the V8 Inspector Protocol for Edge Functions, with an optional address in the host:port formatedge-inspect-brk
(string) - enable the V8 Inspector Protocol for Edge Functions and pause execution on the first line of code, with an optional address in the host:port formatframework
(string) - framework to use. Defaults to #auto which automatically detects a frameworkfunctions
(string) - specify a functions folder to servefunctions-port
(string) - port of functions servergeo
(cache | mock | update) - force geolocation data to be updated, use cached data from the last 24h if found, or use a mock locationlive
(boolean) - start a public live sessionoffline
(boolean) - disables any features that require network accessport
(string) - port of netlify devtarget-port
(string) - port of target app serverdebug
(boolean) - Print debugging informationhttp-proxy
(string) - Proxy server address to route requests through.http-proxy-certificate-filename
(string) - Certificate file to use when connecting using a proxy server
Subcommand | description |
---|---|
dev:exec | Exec command |
Examples
netlify dev netlify dev -d public netlify dev -c "hugo server -w" --target-port 1313 netlify dev --context production netlify dev --edge-inspect netlify dev --edge-inspect=127.0.0.1:9229 netlify dev --edge-inspect-brk netlify dev --edge-inspect-brk=127.0.0.1:9229 BROWSER=none netlify dev # disable browser auto opening
dev:exec
Exec command Runs a command within the netlify dev environment, e.g. with env variables from any installed addons
Usage
netlify dev:exec
Arguments
- ...cmd - the command that should be executed
Flags
context
(string) - Specify a deploy context or branch for environment variables (contexts: "production", "deploy-preview", "branch-deploy", "dev")debug
(boolean) - Print debugging informationhttp-proxy
(string) - Proxy server address to route requests through.http-proxy-certificate-filename
(string) - Certificate file to use when connecting using a proxy server
Examples
netlify dev:exec npm run bootstrap