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:git clone https://github.com/ohdsi/TAB
Install Dependencies
Install the required npm packages:npm install
Test Your Edits Locally
Test your edits locally with:npm run docs:dev
Build the Updated Site Locally
Build the updated site locally with:npm run docs:build
Commit Your Changes
After making your updates, stage and commit your changes using the following commands:git add . git commit -m "Describe your changes here"
Push Your Changes
Push your changes to your forked repository:git 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
main
branch 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.