Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 722 Bytes

INSTALL.md

File metadata and controls

47 lines (31 loc) · 722 Bytes

Development

Requirements

Install nvm with these commands :

sudo apt install curl
curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
source ~/.bashrc

Then install Node 16 using this commande

nvm install 16

Finally install yarn using this command :

npm install -g yarn

Install

To install the dependencies of the project use this command:

yarn install

Dev

Launch the live server using this command :

yarn dev

Build

Builmd the app using this command, the result will be in the dist folder :

yarn build