--- title: Netlify CLI open command sidebar: label: open --- # `open` Open settings for the project linked to the current folder **Usage** ```bash netlify open ``` **Flags** - `admin` (*boolean*) - Open Netlify project - `filter` (*string*) - For monorepos, specify the name of the application to run the command in - `site` (*boolean*) - Open project - `debug` (*boolean*) - Print debugging information - `auth` (*string*) - Netlify auth token - can be used to run this command without logging in | Subcommand | description | |:--------------------------- |:-----| | [`open:admin`](/commands/open#openadmin) | Opens current project admin UI in Netlify | | [`open:site`](/commands/open#opensite) | Opens current project url in browser | **Examples** ```bash netlify open --site netlify open --admin netlify open:admin netlify open:site ``` --- ## `open:admin` Opens current project admin UI in Netlify **Usage** ```bash netlify open:admin ``` **Flags** - `filter` (*string*) - For monorepos, specify the name of the application to run the command in - `debug` (*boolean*) - Print debugging information - `auth` (*string*) - Netlify auth token - can be used to run this command without logging in **Examples** ```bash netlify open:admin ``` --- ## `open:site` Opens current project url in browser **Usage** ```bash netlify open:site ``` **Flags** - `filter` (*string*) - For monorepos, specify the name of the application to run the command in - `debug` (*boolean*) - Print debugging information - `auth` (*string*) - Netlify auth token - can be used to run this command without logging in **Examples** ```bash netlify open:site ``` ---