How to Install Local Food Nodes on macOS
In this tutorial, we will install Local Food Nodes on macOS. Local Food Nodes is a web application that allows communities to build their own local food economy.
Prerequisites
- macOS
- Terminal application
Steps
Open the Terminal application on your macOS.
Install Homebrew package manager by running the following command:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Once Homebrew is installed, install Node.js and Yarn package manager by running the following commands:
brew install node
npm install --global yarn
- Next, clone the Local Food Nodes repository from GitHub by running the following command:
git clone https://github.com/localfoodnodes/localfoodnodes.git
- Once the repository is cloned, navigate to the project directory by running the following command:
cd localfoodnodes
- Install project dependencies by running the following command:
yarn install
- Next, start the application by running the following command:
yarn dev
- After running the command, the application will start running on your local machine at http://localhost:3000.
Congratulations! You have successfully installed Local Food Nodes on macOS. You can now start using the application and build a local food economy in your community.