This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Setup | ||
|
||
Welcome to your HospitalRun project on Nitrous. | ||
|
||
## Running the HospitalRun server: | ||
|
||
In the [Nitrous IDE](https://community.nitrous.io/docs/ide-overview), start HospitalRun via "Run > Start HospitalRun" | ||
|
||
Now you've got a development server running and can see the output in the Nitrous terminal window. You can open up a new shell or utilize [tmux](https://community.nitrous.io/docs/tmux) to open new shells to run other commands. | ||
|
||
## Preview the app | ||
|
||
In the Nitrous IDE, open the "Preview" menu and click "Port 4200". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"template": "ruby", | ||
"ports": [4200], | ||
"name": "HospitalRun", | ||
"description": "Ember front end for HospitalRun", | ||
"scripts": { | ||
"post-create": "sudo apt-get install -y couchdb && echo 'running npm install - this might take awhile...' && npm install -g ember-cli@latest && npm install -g bower && bower install && script/bootstrap && ./script/initcouch.sh && cp server/config-example.js server/config.js", | ||
"Start HospitalRun": "cd ~/code/hospitalrun-frontend && npm start" | ||
} | ||
} |