Installation
Local Installation

Local Installation 🛠️

To run Protofy in your local environment you first need to know that Protofy runs using NodeJS, you should have already installed it. If not, we provide you some links to install NodeJS:

cd ~
curl -sL https://deb.nodesource.com/setup_20.x -o /tmp/nodesource_setup.sh #change setup_20.x for the desired version
sudo bash /tmp/nodesource_setup.sh
sudo apt install nodejs
node -v #check version

Also you must have installed yarn globally, you may need to do (first time only):

npm i -g yarn

Start Protofy in development mode (hot reload)

yarn && yarn dev

Start Protofy in production mode

yarn && yarn prod