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 versionAlso you must have installed yarn globally, you may need to do (first time only):
npm i -g yarnStart Protofy in development mode (hot reload)
yarn && yarn start-devStart Protofy in production mode
yarn && yarn start-prod