Setting up your developer environment
Last updated
git clone https://github.com/semperai/amica.gitIf you haven't already, please install nvm.
You will have to ensure that you've added nvm to your PATH via .bashrc .zshrc or other shell run command script.
Install Node modules for the root package:
npm install # To install dependencies
npm run dev # To startfrom the root directory
To develop amica, run the dev command in your console:
npm run devThis will watch for changes and auto-rebuild as you code.
Last updated