Skip to content
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.

Latest commit

 

History

History
36 lines (26 loc) · 796 Bytes

DEVELOPING.md

File metadata and controls

36 lines (26 loc) · 796 Bytes

Developing

Directory structure

├── app.js                      // Express routes
├── config                      // Express configuration
├── doc                         // Documentation
├── public                      // Static resources
├── scripts                     // Selenium tests
├── server.js                   // Node.js server entry point
├── src                         // React client
│   └── index.js                // React App entry point
└── test                        // Puppet tests

Running locally for debugging

  1. Install the dependencies

    npm install
  2. Build the application

    npm run build
  3. Run the application

    npm run dev