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

Latest commit

 

History

History
39 lines (27 loc) · 856 Bytes

DEVELOPING.md

File metadata and controls

39 lines (27 loc) · 856 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
  4. View the application in a browser at localhost:3000