Skip to content

Latest commit

 

History

History
77 lines (50 loc) · 1.04 KB

installing-and-running.md

File metadata and controls

77 lines (50 loc) · 1.04 KB

Installation


Table of Contents


Development

  1. Clone repository

    git clone --depth 1 https://github.com/brocoders/extensive-react-boilerplate.git my-app
  2. Install dependencies

    cd my-app
    npm install
  3. Copy example environment file

    cp example.env.local .env.local
  4. Run development server

    npm run dev

Production build

  1. Clone repository

    git clone --depth 1 https://github.com/brocoders/extensive-react-boilerplate.git my-app
  2. Install dependencies

    cd my-app
    npm install
  3. Copy example environment file

    cp example.env.local .env.local
  4. Build application

    npm run build
  5. Run production server

     npm run start

Previous: Introduction

Next: Architecture