BlueRain OS
  • Introduction
  • API
    • API Reference
  • Guides
    • Apps
      • Installation
      • Creating an App
      • Configuration
    • Components
      • Registering Components
      • Extending Components
      • Replacing Components
      • Accessing Raw Components
      • Components & HoCs
    • Filters
      • Known Filters
    • Plugins
      • Installation
      • Configuration
      • Creating a Plugin
  • Miscellaneous
    • JSON to React
  • Plugins
    • Apollo
    • Internationalization
    • Material UI
    • React Router
    • Redux
    • Redux Devtools
    • Why Did You Update
Powered by GitBook
On this page
  1. Guides
  2. Apps

Installation

First install the app as a npm package to your project:

yarn add bluerain-app-hello-world

Then import your apps in your bluerain.js file

// bluerain.js
{
    // ...
    apps: [
        require('bluerain-app-hello-world'),
    ]
    // ...
}

Finally, just boot your project on your desired platform by executing the following command on your terminal:

bluerain run web
PreviousAppsNextCreating an App

Last updated 6 years ago