Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
Update GitHub urls to new onc-healthit organization.
Browse files Browse the repository at this point in the history
  • Loading branch information
arscan committed Jul 24, 2019
1 parent c5a0b30 commit 85ac089
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img src="https://github.com/siteadmin/inferno/blob/master/public/images/inferno_logo.png" width="300px" />
<img src="https://github.com/onc-healthit/inferno/blob/master/public/images/inferno_logo.png" width="300px" />

[![Build Status](https://travis-ci.org/siteadmin/inferno.svg?branch=master)](https://travis-ci.org/siteadmin/inferno)
[![Build Status](https://travis-ci.org/onc-healthit/inferno.svg?branch=master)](https://travis-ci.org/onc-healthit/inferno)

Inferno is an open source tool that tests whether patients can access their health data through a standard interface.
It makes HTTP(S) requests to test your server's conformance to authentication, authorization, and FHIR content standards and reports the results back to you.
Expand All @@ -9,7 +9,7 @@ This application creates test clients that exercise the range of requirements of

## Using Inferno

If you are new to FHIR or SMART-on-FHIR, you may want to review the [Inferno Quick Start Guide](https://github.com/siteadmin/inferno/wiki/Quick-Start-Guide).
If you are new to FHIR or SMART-on-FHIR, you may want to review the [Inferno Quick Start Guide](https://github.com/onc-healthit/inferno/wiki/Quick-Start-Guide).

## Installation and Deployment

Expand All @@ -18,14 +18,14 @@ If you are new to FHIR or SMART-on-FHIR, you may want to review the [Inferno Qui
Docker is the recommended installation method for Windows devices and can also be used on Linux and MacOS hosts.

1. Install [Docker](https://www.docker.com/) for the host platform as well as the [docker-compose](https://docs.docker.com/compose/install/) tool (which may be included in the distribution, as is the case for Windows and MacOS).
2. Download the [latest release of the `inferno` project](https://github.com/siteadmin/inferno/releases) to your local computer on a directory of your choice.
2. Download the [latest release of the `inferno` project](https://github.com/onc-healthit/inferno/releases) to your local computer on a directory of your choice.
3. Open a terminal in the directory where the project was downloaded (above).
4. Run the command `docker-compose up` to start the server. This will automatically build the Docker image and launch both the ruby server (using unicorn) and an NGINX web server.
5. Navigate to http://localhost:8080 to find the running application.

If the docker image gets out of sync with the underlying system, such as when new dependencies are added to the application, you need to run `docker-compose up --build` to rebuild the containers.

Check out the [Troubleshooting Documentation](https://github.com/siteadmin/inferno/wiki/Troubleshooting) for help.
Check out the [Troubleshooting Documentation](https://github.com/onc-healthit/inferno/wiki/Troubleshooting) for help.

### Native Installation

Expand All @@ -39,7 +39,7 @@ And run the following commands from the terminal:

```sh
# MacOS or Linux
git clone https://github.com/siteadmin/inferno
git clone https://github.com/onc-healthit/inferno
cd inferno
bundle install
bundle exec rackup
Expand All @@ -59,7 +59,7 @@ Inferno can also be deployed onto a server to test many different instances of t

Deployment on a remote server can be done by using a modified form of the Docker containers provided (see above) or by direct installation on the remote host.

Please see the file [deployment-configuration.md](https://github.com/siteadmin/inferno/blob/master/deployment-configuration.md) for details.
Please see the file [deployment-configuration.md](https://github.com/onc-healthit/inferno/blob/master/deployment-configuration.md) for details.

### Reference Implementation

Expand All @@ -82,7 +82,7 @@ bundle exec rake test
## Inspecting and Exporting Tests

Tests are written to be easily understood, even by those who aren't familiar with Ruby. They can be
viewed directly [in this repository](https://github.com/siteadmin/inferno/tree/master/lib/app/sequences).
viewed directly [in this repository](https://github.com/onc-healthit/inferno/tree/master/lib/app/sequences).

Tests contain metadata that provide additional details and traceability to standards. The active tests and related metadata can be exported into CSV format and saved to a file named `testlist.csv` with the following command:

Expand Down Expand Up @@ -134,7 +134,7 @@ bundle exec rake inferno:generate_script[https://my-server.org/data,onc]
* The `confidential_client` field is a boolean and must be provided as `true` or `false`

## Using with Continuous Integration Systems
Instructions and examples are available in the [Continuous Integration Section of the Wiki](https://github.com/siteadmin/inferno/wiki/Using-with-Continuous-Integration-Systems).
Instructions and examples are available in the [Continuous Integration Section of the Wiki](https://github.com/onc-healthit/inferno/wiki/Using-with-Continuous-Integration-Systems).

## Contact Us
The Inferno development team can be reached by email at [email protected]. Inferno also has a dedicated [HL7 FHIR chat channel](https://chat.fhir.org/#narrow/stream/153-inferno).
Expand Down
6 changes: 3 additions & 3 deletions deployment-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ It is important to open port `80` for HTTP and port `22` for SSH if you need to
"Review and Launch" button, click next button until you get to the Security Groups option. Ensure 80 is accessible from anywhere and 22 is
available from an IP range from which you will connect. Below is an example:

![Security Groups Configuration](https://raw.githubusercontent.com/siteadmin/inferno/master/deployment-files/security-groups.png "Security Groups Configuration")
![Security Groups Configuration](https://raw.githubusercontent.com/onc-healthit/inferno/master/deployment-files/security-groups.png "Security Groups Configuration")

After this step is done, launch the instance. Obtain your instance's IP or host name from the AWS console. Point a web browser to the instance using the IP address or host name.

Expand Down Expand Up @@ -70,7 +70,7 @@ Now, issue the following commands to setup Inferno.
sudo apt-get install git ruby-bundler ruby-dev
sudo apt-get install sqlite3 libsqlite3-dev
sudo apt-get install build-essential patch zlib1g-dev liblzma-dev
git clone https://github.com/siteadmin/inferno.git
git clone https://github.com/onc-healthit/inferno.git
cd inferno
bundle install

Expand Down Expand Up @@ -183,7 +183,7 @@ This section describes how to setup the tool using Apache2 using Passenger.
sudo apt-get install apache2 git ruby-bundler ruby-dev
sudo apt-get install sqlite3 libsqlite3-dev
sudo apt-get install build-essential patch zlib1g-dev liblzma-dev
git clone https://github.com/siteadmin/inferno.git
git clone https://github.com/onc-healthit/inferno.git
cd inferno
bundle install

Expand Down
2 changes: 1 addition & 1 deletion lib/app/views/default.erb
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@
<tr><td><span class="oi oi-arrow-thick-left" style='color:#336699' aria-hidden="true"></span></td> <td><strong>Incoming HTTP(S)</strong></td> <td>This test contains incoming HTTP(S) requests</td></tr>
</tbody>
</table>
<p>For more information, see the <a href='https://github.com/siteadmin/inferno#inferno' target="_blank">Inferno README</a> and the <a href='https://github.com/siteadmin/inferno/wiki' target='_blank'>Inferno wiki</a>.</p>
<p>For more information, see the <a href='https://github.com/onc-healthit/inferno#inferno' target="_blank">Inferno README</a> and the <a href='https://github.com/onc-healthit/inferno/wiki' target='_blank'>Inferno wiki</a>.</p>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion lib/app/views/guided.erb
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@
<tr><td><span class="oi oi-arrow-thick-left" style='color:#336699' aria-hidden="true"></span></td> <td><strong>Incoming HTTP(S)</strong></td> <td>This test contains incoming HTTP(S) requests</td></tr>
</tbody>
</table>
<p>For more information, see the <a href='https://github.com/siteadmin/inferno#inferno' target="_blank">Inferno README</a> and the <a href='https://github.com/siteadmin/inferno/wiki' target='_blank'>Inferno wiki</a>.</p>
<p>For more information, see the <a href='https://github.com/onc-healthit/inferno#inferno' target="_blank">Inferno README</a> and the <a href='https://github.com/onc-healthit/inferno/wiki' target='_blank'>Inferno wiki</a>.</p>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion lib/app/views/index.erb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
</form>

<div class='alert alert-warning'>
<span class="oi oi-wrench "></span> This software is under active development. Please report bugs and submit feature requests as <a href='https://github.com/siteadmin/inferno/issues' target="_blank">GitHub issues</a>.
<span class="oi oi-wrench "></span> This software is under active development. Please report bugs and submit feature requests as <a href='https://github.com/onc-healthit/inferno/issues' target="_blank">GitHub issues</a>.
</div>


Expand Down
6 changes: 3 additions & 3 deletions lib/app/views/layout.erb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="https://github.com/siteadmin/inferno/">Documentation</a>
<a class="nav-link" target="_blank" href="https://github.com/onc-healthit/inferno/">Documentation</a>
</li>
</ul> %>
</div>
Expand All @@ -42,10 +42,10 @@
<footer class="footer">
<div class="container row">
<div class="col-sm text-left">
<a target="_blank" href="https://github.com/siteadmin/inferno">Open Source</a>
<a target="_blank" href="https://github.com/onc-healthit/inferno">Open Source</a>
</div>
<div class="col-sm text-center">
<a target="_blank" href="https://github.com/siteadmin/inferno/issues">Issues</a>
<a target="_blank" href="https://github.com/onc-healthit/inferno/issues">Issues</a>
</div>
<div class="col-sm text-right">
Version <%= version %>
Expand Down

0 comments on commit 85ac089

Please sign in to comment.