Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.96 KB

setup.md

File metadata and controls

51 lines (34 loc) · 1.96 KB

Setup

  • Clone the repo and change into the new directory.

    git clone https://github.com/falling-fruit/falling-fruit-web
    cd falling-fruit-web
  • Install the node version specified in the .nvmrc file. This is easiest using nvm.

    # Install node version specified in .nvmrc
    nvm install
    # Use node version specified in .nvmrc
    nvm use
  • Install yarn. This is best done using npm (bundled with node).

    npm install --global yarn
  • Install dependencies.

    yarn
  • Initialize your private .env file.

    cp example.env .env
  • Set environment variables in .env.

  • Start the application.

    yarn start