@openmrs/generator-openmrs-owa

Scaffold OpenMRS Open Web Apps.


Keywords
yeoman-generator, openmrs, open, web, app, owa, javascript, yeoman
License
MPL-2.0
Install
npm install @openmrs/generator-openmrs-owa@0.7.1

Documentation

OpenMRS

!! Packaged Moved Here: https://github.com/openmrs/generator-openmrs-owa

Build Status Downloads

Yeoman generator that scaffolds an OpenMRS Open Web App

OpenMRS OWA Asciicast

Features

The following features are currently supported:

  • Scaffold basic OWA folder structure and files
  • Production build with Webpack
  • Local deploy with Webpack
  • Package management with npm
  • Live reload, interaction sync and more with Browsersync

Getting Started

  • Install dependencies: npm install --global yo
  • Install the generator: npm install --global generator-openmrs-owa
  • Create directory for your app: mkdir openmrs-owa-myapp && cd $_
  • Run yo openmrs-owa to scaffold the Open Web App
  • Run npm run build:prod to build distributable zip file
  • Run npm run build:deploy to deploy directly to your local server
  • Run npm run watch for live reloading and more

Extending

Install npm packages dependencies as follows:

npm install --save <package>

To use the installed package, import it as follows:

//import and assign to variable
import variableName from 'package';

To contain package in vendor bundle, remember to add it to vendor entry point array, eg.:

entry: {
  app : `${__dirname}/app/js/owa.js`,
  css: `${__dirname}/app/css/owa.css`,
  vendor : [
    'package',
    ...//other packages in vendor bundle
  ]
},

Any files that you add manually must be added in the app directory.

Options

  • --skip-welcome-message Skips Yeoman's greeting before displaying options.
  • --skip-install Skips automatically running npm install.

Environment Variables

The generator will read the following environment variables and use their values as the default when generating a new Open Web App:

  • OMRS_OWA_LOCAL_DIR: The directory to use for local deployment

e.g. /Users/pascal/openmrs-standalone-2.4/appdata/owa

  • OMRS_OWA_GITHUB_ID: Your GitHub username

e.g. psbrandt

  • OMRS_OWA_BASE_URL: The base URL of your local OpenMRS server

e.g. http://localhost:8082/openmrs-standalone

Contribute

See the contributing docs.

Support

OpenMRS Talk OpenMRS IRC OpenMRS Telegram OpenMRS Wiki

It's best to ask your questions on OpenMRS talk.

License

MPL-2.0