biss-frontend-cli
v1.0.7
Published
Simple Cli tool to initialize FE app templates
Downloads
3
Readme
The BISS frontend Cli:
- install the npm package
biss-frontend-cli
globally on your machine:
npm i -g biss-frontend-cli
- Use the designated
npx
command:
npx create-biss-react-app
- Pick a name for your Project:
? what is your new project name? > MyCoolProject.FE
- Pick the method of authentication:
? Choose an authentication method:
> Enter a Personal Access Token
Proceed with added SSH key
Note: For the second option SSH
make sure you've added your private ssh key to the ssh-agent as follows:
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/[your_ssh_key_name]
It will ask your to enter your passphrase only once and it will automatically authenticate the cli command the next time you use it.
- Your installtion is now done, changeg into your newly created directory
cd MyCoolProject.FE
- Install all the necessary dependencies:
npm i
- Run your React app:
npm run dev