## Requirements * Windows > 7 * PowerShell > 5
npm install @epo-sam/context-menupowershell
$env:SCOOP='D:\dev\scoop'
[Environment]::SetEnvironmentVariable('SCOOP', $env:SCOOP, 'User')
iwr -useb get.scoop.sh | iex
` $3
Run the following command from your PowerShell to install Git:
`powershell
scoop install git
`$3
Run the following command from your PowerShell to install Node.JS:
`powershell
scoop install nodejs-lts
`Project instalation
Open the folder where you want to install project from your PowerShell, then run the following command:
`powershell
ssh://git@bitbucket-p.internal.epo.org:7999/ma/annotations.git
`
Open project folder:
`powershell
annotations
`
Install npm dependencies with the following command:
`powershell
npm install
`Project commands
Build project
Development Workflow
Please read this document before you start Development WorkflowCoding Style
There are the style guidlines for coding in this project.
* Write in Project style Typescript.
* Use capitalization scheme to name your files
* When the module itself is a class like BrowserWindow, use PascalCase.
* When the module is a set of APIs, like globalShortcut, use camelCase.
* For React components use
`.tsx` file extension.You can run
`npm run lint`` to show any style issues detected by eslint.