minor change to prior commit
[openemr.git] / CONTRIBUTING.md
blobb2362d4b681772151687e8b3fce1b8695738ab02
1 Thank you for your contribution. OpenEMR (and global healthcare) continues to get better because of people like you!
3 The maintainers of OpenEMR want to get your pull request in as seamlessly as possible, so please ensure your code is consistent with our [development policies](https://open-emr.org/wiki/index.php/Development_Policies).
5 ## Code Contributions (local development)
7 You will need a "local" version of OpenEMR to make changes to the source code. The easiest way to do this is with [Docker](https://hub.docker.com/r/openemr/openemr/):
9 1. [Create your own fork of OpenEMR](https://github.com/openemr/openemr/fork) (you will need a GitHub account) and `git clone` it to your local machine.
10     - It's best to also add an `upstream` origin to keep your local fork up to date. [Check out this guide](https://oneemptymind.wordpress.com/2018/07/11/keeping-a-fork-up-to-date/) for more info.
11         - If you haven't already, [install git](https://git-scm.com/downloads) for your system
12 2. `cd openemr` (the directory you cloned the code into)
13     - If you haven't already, [install Docker](https://docs.docker.com/install/) and [install compose](https://docs.docker.com/compose/install/) for your system
14         - If you want to troubleshoot with the below steps easier, please also [install openemr-cmd](https://github.com/openemr/openemr-devops/tree/master/utilities/openemr-cmd) for your system
15 3. Run `docker-compose up` from your command line
16     - When the build is done, you'll see the following message:
17     ```sh
18     openemr_1  | Love OpenEMR? You can now support the project via the open collective:
19     openemr_1  |  > https://opencollective.com/openemr/donate
20     openemr_1  |
21     openemr_1  | Starting cron daemon!
22     openemr_1  | Starting apache!
23     ```
24 4. Navigate to `http://localhost:8300/` to login as `admin`. Password is `pass`.
25 5. Make changes to any files on your local file system. Most changes will appear after a refresh of the page or iFrame you're working on.
26     - An exception to this is if making changes to styling scripts in interface/themes/. In that case will need to clear web browser cache and run the following command to rebuild the theme files:
27       ```sh
28       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools build-themes'
29       ```
30 6. If you wish to connect to the sql database, this docker environment provides the following 2 options:
31     - Navigate to `http://localhost:8310/` where you can login into phpMyAdmin.
32     - Or you can directly connect to port 8320 via your favorite sql tool (Mysql Workbench etc.).
33     - Use `username/user`: openemr, `password`: openemr .
34 7. Developer tools for php syntax checking, psr12 checking, and automated testing.
35     - To check PHP error logs:
36       ```sh
37       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools php-log'
38       ```
39     - To create a report of PSR12 code styling issues (this takes several minutes):
40       ```sh
41       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools psr12-report'
42       ```
43     - To fix PSR12 code styling issues (this takes several minutes):
44       ```sh
45       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools psr12-fix'
46       ```
47     - To create a report of theme styling issues:
48       ```sh
49       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools lint-themes-report'
50       ```
51     - To fix theme styling issues:
52       ```sh
53       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools lint-themes-fix'
54       ```
55     - To check PHP parsing errors (this takes several minutes):
56       ```sh
57       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools php-parserror'
58       ```
59     - To run unit testing:
60       ```sh
61       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools unit-test'
62       ```
63     - To run api testing:
64       ```sh
65       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools api-test'
66       ```
67     - To run e2e testing:
68       ```sh
69       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools e2e-test'
70       ```
71     - To run services testing:
72       ```sh
73       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools services-test'
74       ```
75     - To run fixtures testing:
76       ```sh
77       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools fixtures-test'
78       ```
79     - To run validators testing:
80       ```sh
81       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools validators-test'
82       ```
83     - To run controllers testing:
84       ```sh
85       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools controllers-test'
86       ```
87     - To run common testing:
88       ```sh
89       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools common-test'
90       ```
91 8. To run the entire dev tool suite (PSR12 fix, lint themes fix, PHP parse error, unit/API/e2e/services/fixtures/validators/controllers/common tests) in one command, run
92     ```sh
93     docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools clean-sweep'
94     ```
95 9. To run only all the automated tests (unit/API/e2e/services/fixtures/validators/controllers/common tests) in one command, run
96     ```sh
97     docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools clean-sweep-tests'
98     ```
99 10. Developer tools to reset openemr and to load demo data.
100     - To reset OpenEMR only (then can reinstall manually via setup.php in web browser):
101       ```sh
102       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools dev-reset'
103       ```
104         - When running setup.php, need to use `mysql` for 'Server Host', `root` for 'Root Password', and `%` for 'User Hostname'.
105     - To reset and reinstall OpenEMR:
106       ```sh
107       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools dev-reset-install'
108       ```
109     - To reset and reinstall OpenEMR with demo data (this includes several users with access controls setup in addition to patient portal logins. [See HERE for those credentials](https://www.open-emr.org/wiki/index.php/Development_Demo#Demo_Credentials).):
110       ```sh
111       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools dev-reset-install-demodata'
112       ```
113         - hint: this is also a great way to test any changes a developer has made to the sql upgrade stuff (ie. such as sql/5_0_2-to-6_0_0_upgrade.sql)
114 11. Developer tools to backup and restore OpenEMR data (database and data on drive) via snapshots.
115     - Create a backup snapshot (using `example` below, but can use any alphanumeric identifier):
116       ```sh
117       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools backup example'
118       ```
119     - Restore from a snapshot (using `example` below, but can use any alphanumeric identifier)
120       ```sh
121       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools restore example'
122       ```
123     - To list the snapshots
124       ```sh
125       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools list-snapshots'
126       ```
127 12. Developer tools to send/receive snapshots (via capsules) that are created above in item 11.
128     - Here is how to grab a capsule from the docker, which can then store or share with friends.
129         - List the capsules:
130           ```sh
131           docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools list-capsules'
132           ```
133         - Copy the capsule from the docker to your current directory (using `example.tgz` below):
134           ```sh
135           docker cp $(docker ps | grep _openemr | cut -f 1 -d " "):/snapshots/example.tgz .
136           ```
137     - Here is how to send a capsule into the docker.
138         - Copy the capsule from current directory into the docker (using `example.tgz` below):
139           ```sh
140           docker cp example.tgz $(docker ps | grep _openemr | cut -f 1 -d " "):/snapshots/
141           ```
142         - Restore from the new shiny snapshot (using `example` below):
143           ```sh
144           docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools restore example'
145           ```
146         - Ensure run upgrade to ensure will work with current version OpenEMR:
147           ```sh
148           docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools upgrade 5.0.2'
149           ```
150 13. Developer tools to turn on and turn off support for multisite feature.
151     - Turn on support for multisite:
152       ```sh
153       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools enable-multisite'
154       ```
155     - Turn off support for multisite:
156       ```sh
157       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools disable-multisite'
158       ```
159 14. Developer tool to change the database character set and collation (character set is the encoding that is used to store data in the database; collation are a set of rules that the database uses to sort the stored data).
160     - Best to demonstrate this devtool with examples.
161         - Set character set to utf8mb4 and collation to utf8mb4_general_ci (this is default for OpenEMR 6 and higher):
162           ```sh
163           docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools change-encoding-collation utf8mb4 utf8mb4_general_ci'
164           ```
165         - Set character set to utf8mb4 and collation to utf8mb4_unicode_ci:
166           ```sh
167           docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools change-encoding-collation utf8mb4 utf8mb4_unicode_ci'
168           ```
169         - Set character set to utf8mb4 and collation to utf8mb4_vietnamese_ci:
170           ```sh
171           docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools change-encoding-collation utf8mb4 utf8mb4_vietnamese_ci'
172           ```
173         - Set character set to utf8 and collation to utf8_general_ci (this is default for OpenEMR 5 and lower):
174           ```sh
175           docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools change-encoding-collation utf8 utf8_general_ci'
176           ```
177 15. Developer tools to test ssl certificate (to test client based certificates and revert back to default self signed certificate) and force/unforce https.
178     - To test client based certificates, create a zip package of the certificate in OpenEMR at Administration->System->Certificates. Then can import this zip package (example `ssl.zip`) into the docker via:
179       ```sh
180       docker cp ssl.zip $(docker ps | grep _openemr | cut -f 1 -d " "):/certs/
181       ```
182     - To list the available certificate packages on docker:
183       ```sh
184       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools list-client-certs'
185       ```
186     - To install and configure a certificate package (example `ssl`):
187       ```sh
188       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools setup-client-cert ssl'
189       ```
190     - To revert back to selfsigned certicates (ie. revert the changes required for client based certificates):
191       ```sh
192       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools on-self-signed-cert'
193       ```
194     - To force https in apache script via redirect:
195       ```sh
196       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools force-https'
197       ```
198     - To revert the changes that forced https in apache script:
199       ```sh
200       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools un-force-https'
201       ```
202 16. Developer tools to place/remove testing sql ssl certificate and testing sql ssl client key/cert.
203     - Place the testing sql ssl CA cert:
204       ```sh
205       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools sql-ssl'
206       ```
207     - Remove the testing sql ssl CA cert:
208       ```sh
209       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools sql-ssl-off'
210       ```
211     - Place the testing sql ssl CA cert and testing sql ssl client key/cert:
212       ```sh
213       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools sql-ssl-client'
214       ```
215     - Remove the testing sql ssl CA cert and testing sql ssl client key/cert:
216       ```sh
217       docker exec -i $(docker ps | grep _openemr | cut -f 1 -d " ") sh -c '/root/devtools sql-ssl-client-off'
218       ```
219 17. Xdebug and profiling is also supported for PHPStorm.
220     - Firefox install xdebug helper add on (configure for PHPSTORM)
221     - PHPStorm Settings->Language & Frameworks->PHP->Debug
222         - Start listening
223         - Untoggle "Break at first line in PHP scripts"
224         - Untoggle both settings that start with "Force Break at first line..."
225      - Make sure port 9000 is open on your host operating system
226      - Profiling output can be found in /tmp directory in the docker
227 18. When you're done, it's best to clean up after yourself with `docker-compose down -v`
228     - If you don't want to build from scratch every time, just use `docker-compose down` so your next `docker-compose up` will use the cached volumes.
229 19. [Submit a PR](https://github.com/openemr/openemr/compare) from your fork into `openemr/openemr#master`!
231 We look forward to your contribution...
233 If you do not want to use Docker, you can always install OpenEMR directly on your local environment. This will require installing additional dependencies for your operating system. For more info see [OpenEMR Development Versions](https://open-emr.org/wiki/index.php/OpenEMR_Installation_Guides#OpenEMR_Development_Versions) on the wiki.
235 ## Financial contributions
237 We also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/openemr).
238 Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed.
240 ## Credits
242 ### Contributors
244 Thank you to all the people who have already contributed to openemr!
245 <a href="https://github.com/openemr/openemr/graphs/contributors"><img src="https://opencollective.com/openemr/contributors.svg?width=890" /></a>
247 ### Backers
249 Thank you to all our backers! [[Become a backer](https://opencollective.com/openemr#backer)]
251 <a href="https://opencollective.com/openemr#backers" target="_blank"><img src="https://opencollective.com/openemr/backers.svg?width=890"></a>
253 ### Sponsors
255 Thank you to all our sponsors! (please ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/openemr#sponsor))
257 <a href="https://opencollective.com/openemr/sponsor/0/website" target="_blank"><img src="https://opencollective.com/openemr/sponsor/0/avatar.svg"></a>
258 <a href="https://opencollective.com/openemr/sponsor/1/website" target="_blank"><img src="https://opencollective.com/openemr/sponsor/1/avatar.svg"></a>
259 <a href="https://opencollective.com/openemr/sponsor/2/website" target="_blank"><img src="https://opencollective.com/openemr/sponsor/2/avatar.svg"></a>
260 <a href="https://opencollective.com/openemr/sponsor/3/website" target="_blank"><img src="https://opencollective.com/openemr/sponsor/3/avatar.svg"></a>
261 <a href="https://opencollective.com/openemr/sponsor/4/website" target="_blank"><img src="https://opencollective.com/openemr/sponsor/4/avatar.svg"></a>
262 <a href="https://opencollective.com/openemr/sponsor/5/website" target="_blank"><img src="https://opencollective.com/openemr/sponsor/5/avatar.svg"></a>
263 <a href="https://opencollective.com/openemr/sponsor/6/website" target="_blank"><img src="https://opencollective.com/openemr/sponsor/6/avatar.svg"></a>
264 <a href="https://opencollective.com/openemr/sponsor/7/website" target="_blank"><img src="https://opencollective.com/openemr/sponsor/7/avatar.svg"></a>
265 <a href="https://opencollective.com/openemr/sponsor/8/website" target="_blank"><img src="https://opencollective.com/openemr/sponsor/8/avatar.svg"></a>
266 <a href="https://opencollective.com/openemr/sponsor/9/website" target="_blank"><img src="https://opencollective.com/openemr/sponsor/9/avatar.svg"></a>