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.
Contributions are welcome via pull requests and issues. Please see our contributing guide for more details, including a link to join our project Slack.
To install the frontend please do the following:
npm install -g npmnpm install -g ember-cli@latest.
Depending on your npm permissions you might need root access to install ember-cli.npm install -g bowergit clone https://github.com/HospitalRun/hospitalrun-frontend, go to the cloned folder and run script/bootstrap. (Note: Depending on your npm permissions you might need root access to install PhantomJS2; also, Windows users must run with Cygwin)../script/initcouch.sh in the folder you cloned the HospitalRun repo. A user hradmin will be created with password: test../script/initcouch.sh USER PASS in the folder you cloned the HospitalRun repo. USER and PASS are the CouchDB admin user credentials../script/initcouch2.sh in the folder you cloned the HospitalRun repo. A user hradmin will be created with password: test../script/initcouch2.sh USER PASS in the folder you cloned the HospitalRun repo. USER and PASS are the CouchDB admin user credentials.server/config-example.js to server/config.js in the folder you cloned the HospitalRun repo. If you already had a CouchDB admin user that you passed into the couch script (./script/initcouch.sh USER PASS), then you will need to modify the couchAdminUser and couchAdminPassword values in server/config.js to reflect those credentials. (Note: If on Mac, you need to make sure CouchDB can be run. See How to open an app from a unidentified developer and exempt it from Gatekeeper.)make serve, it will start couchdb, install npm dependencies and start the server.To start the frontend please do the following:
npm start in the repo folder. If npm start doesn't work for you, try ember serve as an alternative.hradmin and password test.To run HospitalRun with Docker please do the following:
git clone https://github.com/HospitalRun/hospitalrun-frontend.git.cd hosptialrun-frontend.docker build -t hospitalrun-frontend .docker run -it --name couchdb -d couchdb to create the couchdb container.docker run -it --name hospitalrun-frontend -p 4200:4200 --link couchdb:couchdb -d hospitalrun-frontend to create the HospitalRun container.If you are running with Docker Toolbox you will have to run the following commands to get the IP of the docker machine where hospitalrun-frontend is running with the following:
docker-machine ip default.http://<docker-machine ip>:4200 in a browser and login with username hradmin and password test.If you are not running with docker toolbox please do the following:
http://localhost:4200 in a browser and login with username hradmin and password test.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 npm start 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 probably 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 Administration 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');
});
});
});
To run the test suite locally while developing, just run ember test from the project root.
Tests will also run automatically via Travis CI when you push a branch to the repository or a pull request. You can view output by going to the Travis test status from the Pull Request merge box.
To keep our styling scalable and consistent, we are using an scss linter that will throw an error in the build if you do not conform to it's syntax rules. The syntax rules are defined in the .scss-lint.yml file, and documentation for each linter is available here.
The easiest way to work with styles in the project and abide by our linting rules is to install the linter-scss-lint package for Atom. The package will then show you in real time where your styles are breaking the linter and how to correct them.
Again, contributions are welcome via pull requests and issues. Please see our contributing guide for more details.
Seriously, please read the Contribution Guide.
To start coding and understand the frameworks, concepts and structure of the project, please read: Contribution Guide: Start Coding.
If you are willing to try using make, ensure you have installed git, node and couchdb (steps 1, 2 and 7 above), you may skip the rest. This requires couchdb in the path to work correctly.
make serve, it will start couchdb, install npm dependencies and start the server.make all to run all tests and build the app.Makefile to figure other targets available.Content type
Image
Digest
Size
361 MB
Last updated
over 9 years ago
docker pull knowngate/hrun