Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 570 Bytes

CONTRIBUTING.md

File metadata and controls

56 lines (38 loc) · 570 Bytes

Let's Collab 🤘


Thank you very much for coming this far.

Up & Running

  • Fork

  • Clone

git clone https://github.com/{YOUR_USERNAME}/autarky.git
  • Install deps (Prefer yarn)

# npm
npm i

# yarn
yarn
  • Start dev mode

# npm
npm run watch

# yarn
yarn run watch
  • Running the code

# Development build
node /dist/index.js

# Production Build
node /build/index.js
  • Testing

    We are using jest as a testing frammework
# npm
npm run test

# yarn
yarn run test