Ember frontend for HospitalRun
To run the development environment for this frontend you will need to have Git, Node.js, Ember CLI, Bower and CouchDB installed.
To install the frontend please do the following:
- Make sure you have installed Git
- Make sure you have installed Node.js. Versions after 0.10.0 should work, but please note if you encounter errors using 5.x it may be necessary to upgrade your npm version. Versions after 3.5.x should work:
npm install -g npm
- Install ember-cli v1.13.14:
npm install -g ember-cli@1.13.14
- Install bower:
npm install -g bower
- Clone this repo with
git clone https://github.com/HospitalRun/hospitalrun-frontend
, go to the cloned folder and:npm install
to install needed node modules.bower install
to install needed bower modules.npm install -g phantomjs2
to install PhantomJS2, which is needed to run tests. If you are using Linux, you will need to build PhantomJS from source following directions here: http://phantomjs.org/download.html.
- Install and configure CouchDB
- Download and install CouchDB from http://couchdb.apache.org/#download
- Create admin user:
- If you have just installed CouchDB and have no admin user, please run
initcouch.sh
. A userhradmin
will be created with password:test
. - If you already have a CouchDB admin user, please run
initcouch.sh USER PASS
whereUSER
andPASS
are the CouchDB admin user credentials.
- Copy the
server/config-example.js
toserver/config.js
.
To start the frontend please do the following:
- Start the server by running
ember serve
in the repo folder. - Go to http://localhost:4200/ in a browser and login with username
hradmin
and passwordtest
.
Always make sure to git pull
and get the latest from master.
The app will usually tell you when something needs to happen (i.e. if you try to ember serve
and npm is out of date, it will tell you to run npm update
. But If you run into problems you can't resolve, feel free to open an issue, or ask for help in the HospitalRun Slack channel (you can request an invite here).
Otherwise, here are some tips for common issues:
The browser shows only a loading dialog
Is your server (still) running? Is Couch running? If not, that's problably the issue.
My changes aren't showing up in the browser
Try a browser refresh cmd + r
.
If you would like to load sample data, you can do so by navigating to Load DB under the Adminstration menu. You should see the following screen:
Click on Choose File and select the file sample-data.txt which is included in root directory of the repo at sample-data.txt. Next, click on Load File. When the database load is complete a message will appear indicating if the load was successful.
Fixtures are PouchDB dumps that are generated with pouchdb-dump-cli.
To create a fixture, run pouchdb-dump http://localhost:5984/main -u hradmin -p test | cat > tests/fixtures/${name_of_fixture}.txt
.
To use a fixture, use runWithPouchDump(${name_of_fixture}, function(){..});
in your acceptance test. For example,
test('visiting /patients', function(assert) {
runWithPouchDump('default', function() {
//Actual test code here
authenticateUser();
visit('/patients');
andThen(function() {
assert.equal(currentURL(), '/patients');
});
});
});
Contributions are welcome via pull requests and issues. Please see our contributing guide for more details.