Install the Starter Site CLI
To install the Starter Site CLI for React development, you can download a zip file, unzip it, and use the npm install command.
Follow these steps for installation:
-
Get the files for the Starter Site CLI from here:
git clone git@github.com:oracle/content-and-experience-toolkit.gitOr you can download from GitHub:
https://github.com/oracle/content-and-experience-toolkit cd content-and-experience-toolkit/react-starter-sites-
If you are behind a corporate web proxy, configure
npmto work with your proxy:npm config set proxy http://proxy.company.example.com:8080 npm config set https-proxy http://proxy.company.example.com:8080 -
Run the
npm installcommand:npm install -gFor a Mac, run the following command instead:
sudo npm install -g
If you want to reinstall the CLI, uninstall it first:
npm uninstall -g cecss-cliFor a Mac, use the following command instead to untinstall the CLI:
sudo npm uninstall -g cecss-cli