Getting Started
This page contains some helpful hints about getting started with your involvement on the OHDSI TAB.
Contributing to this Site
Clone the Repository
Clone the site and create a fork for your updates:shellgit clone https://github.com/ohdsi/TABInstall Dependencies
Install the required npm packages:shellnpm installTest Your Edits Locally
Test your edits locally with:shellnpm run docs:devBuild the Updated Site Locally
Build the updated site locally with:shellnpm run docs:buildCommit Your Changes
After making your updates, stage and commit your changes using the following commands:shellgit add . git commit -m "Describe your changes here"Push Your Changes
Push your changes to your forked repository:shellgit push origin <your-branch-name>Open a Pull Request
- Navigate to the original OHDSI TAB repository.
- Click on the "Pull Requests" tab.
- Click the "New Pull Request" button.
- Select your fork and branch as the source, and the
mainbranch of the original repository as the target. - Provide a clear title and description for your pull request.
Submit the Pull Request
Review your changes and click "Create Pull Request" to submit it for review.Respond to Feedback
Be prepared to address any comments or requested changes from the repository maintainers.