Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 733 Bytes

CONTRIBUTING.md

File metadata and controls

54 lines (36 loc) · 733 Bytes

Contributing

Get started

This project is written in TypeScript and is using prettier and eslint for code formatting. You need node v18.

  1. Install node v18. I recommend installing that with nvm: https://github.com/nvm-sh/nvm
nvm install 18
  1. Make node v18 default
nvm alias default 18
  1. Open a new terminal and verify node version (should return v18.X.X)
node -v
  1. Install yarn
npm install -g yarn
  1. Fork and clone project
git clone git@github.com:<GITHUB_USERNAME>/aws-azure-login.git
cd aws-azure-login
  1. Install dependencies
yarn install

7a. Start dev mode

yarn start

7b. Start prod mode

yarn build && node ./lib/index.js