#
Contributing
NOTE
The guide was written for OpenMRS 1.9 in 2012 and needs to be updated. We would appreciate any help in updating the guide to cover OpenMRS 2.x and OpenMRS 3.x.
The OpenMRS Guide is hosted at https://github.com/openmrs/openmrs-book-guide. Anyone is welcome to help us improve the guide by contributing pull requests to this repository. We use Retype for this guide. It's basically simple Markdown formatting.
#
GitHub account
If you don't have one, get a GitHub account. It's free!
#
Simplest approach
Use the Edit this page
link at the bottom of any page to make edits. GitHub will guide you through submitting any changes as a pull request.
#
Advanced edits
If you plan to perform more extensive edits of the guide, you can clone the repository, make multiple edits and submit those changes through a pull request. This requires some basic knowledge of working with git.
#
Fork the repository
The first step is to fork the repository on GitHub. Visit the openmrs/openmrs-book-guide
repository and click the "Fork" button at the top right to create a fork of the repository under your own GitHub account. Your fork will
be located at https://github.com/{your GitHub username}/openmrs-book-guide
. For the steps that follow (either using gitpod or Docker,
you will want to the address of your fork of the repository.
#
Using gitpod.io
gitpod.io offers free environments. By forking the guide's repository to your own GitHub account, signing up for a free gitpod.io account, and granting access to your GitHub account, you can create a gitpod.io workspace for free using your fork of the guide's repository and the VS Code editor. Once the environment is running, you can start Retype within virtual VS Code's terminal window using the commands:
npm install retypeapp --global
retype start
This should start Retype and run the guide on port 5000 at a URL you can load in your browser for testing. Once you are done making changes, you can use the VS Code editor's GitHub feature to commit any changes and sync those with your account on GitHub.
#
Using Docker
If you have Git and Docker installed, you can clone the guide locally and make & test changes locally.
git clone https://github.com/{your GitHub username}/openmrs-book-guide
cd openmrs-book-guide
docker run --rm -it -p 5000:5000 -v "$PWD:/app" -w /app retypeapp/retype retype start
The guide should be running at the URL displayed by Retype until you press Ctrl-C
to quit. In this mode, Retype lets you edit
pages directly in your browser. If you make changes in the file system, While Retype is running, any changes made
to the files directly should trigger your browser to reload and show those changes nearly instantaneously.
Once you are done making changes, you can commit those changes and push them to your repository (replacing "Brief summary of changes" below with a brief description of the changes you made):
git add .
git commit -m "Brief summary of changes"
git push
#
Creating a pull request
After you've committed changes to your fork of the repository. Browse to your fork (using the URL based on your GitHub
username, which should look like https://github.com/{your GitHub username}/openmrs-book-guide
). Just above the list of
files, you should see a line that says something like "This branch is 1 commit ahead openmrs:main." followed by a
" Contribute" button to the right that will guide you through creating a pull request.
#
Questions?
If you have questions, join the community in OpenMRS Talk or Slack.
NOTE
The guide was written for OpenMRS 1.9 in 2012 and needs to be updated. We would appreciate any help in updating the guide to cover OpenMRS 2.x and OpenMRS 3.x.