BBahmni 한국어 매뉴얼검색
한국어 번역 완료
한국어English

Working on Bahmni OpenMRS frontend

Old Instructions (No longer valid)

AngularJS requires the following tool tree installed on your development machine.

  • Xcode (only for mac)
  • Ruby (preferably use rvm to manage your ruby environements - read this blog)
  • Node and Node Package Manager (npm)
  • Global node modules - bower, grunt, compass
  • Project specific node modules
  • Bower project components

Use following instructions (the exact mechanism for doing step 1 would depend on the OS you are using, we have mentioned for mac).

  1. Install Xcode and npm
  2. Install the following modules required globally (This is a one time task) bash
    npm install -g bower
    npm install -g grunt-cli
    
    # best to do this within an rvm environment
    gem install compass
  3. You would have to run the following commands for each Bahmni front end project. Run these commands from the ui folder under Bahmni front end project:bash
    # Install node dependencies (Installed into node_modules).
    npm install
    # Set up UI component/dependencies (This installs all the UI dependencies into app/components)
    bower install
    # Build the application (into dist folder) using Grunt
    grunt
  4. Run this command from Bahmni frontend project folder for creating a symlink into your vagrant /var/www: bash
    # links app folder
    ./scripts/vagrant-link.sh 
    # links dist folder
    ./scripts/vagrant-link.sh dist
원문 정보

Bahmni Wiki · CC BY-SA 4.0

원문 보기 ↗