-
Notifications
You must be signed in to change notification settings - Fork 523
Wiki
If you notice something about the wiki that could be improved, please let us know! There are a couple of ways you can do so:
- If the improvement you have in mind is big, you want feedback before you start working on it, or you don't have time to make the change yourself, open an issue in the oppia-android repository.
- If you can make the change yourself, see the instructions below for opening a pull request (PR).
For your first contribution to oppia-android wiki, you'll need to set up your repository (you only have to do this once). Please follow the instructions in the Installing Oppia Android to set up your repository.
Then for every new contribution (including your first), you should follow these steps:
-
Checkout the
develop
branch and pull in the latest changes from upstream:git checkout develop git pull upstream develop
-
Create a new branch for your changes:
git checkout -b {{branch name}}
-
Make your changes, being sure to follow our style guide. You can use whatever text editor you prefer for this.
-
Commit your changes. You can make multiple commits as you write if you prefer.
git add {{paths to the files you changed}} git commit
-
Push your changes to your fork (called
origin
by default):git push -u origin {{branch name}}
-
Open a pull request. Remember to click the "compare across forks" link since your changes are on a different fork than oppia-android. The base for your PR should be the
develop
branch on theoppia/oppia-android
repository. -
Wait for the reviewers to review your PR.
-
Once the reviewers leaves comments, respond to them and make changes as needed. Please do not resolve review threads--let the reviewer do that. Repeat as needed until reviewers approve.
-
Once reviewers have approved, they will merge your PR, and your changes will be automatically deployed to the Oppia wiki. Congratulations! 🎉
If the deployment of changes to the wiki following the merging of a pull request was unsuccessful, you can re-run the failed "Deploy to wiki" workflow to deploy to the wiki by following these steps:
- Navigate to the Oppia Android wiki repository's Actions tab.
- Select the "Deploy to wiki" workflow.
- Refer to these instructions to re-run the workflow.
Our wiki consists of the following components:
- The
oppia/oppia-android.wiki
git repository automatically created by GitHub to hold the wiki viewable at https://github.com/oppia/oppia-android/wiki. This is our deployment repository where we put wiki source files to be viewed by the community. - The
/wiki
folder in theoppia/oppia-android
repository is our source repository where we store and edit the wiki source files. We consider this to be the single source of truth for our wiki. - A
wiki.yml
workflow in oppia-android deploys any new commits in oppia-android to the deployment repository. The workflow is activated whenever a pull request that modifies any file in the/wiki
directory is pushed to thedevelop
branch.
If you change the wiki through the web interface at https://github.com/oppia/oppia-android/wiki, the wiki.yml
workflow will be triggered and the wiki will be reset to by pushing the files from the /wiki
folder to the oppia/oppia-android.wiki
git repository.
Note
The/wiki
folder in theoppia/oppia-android
repository is the single source of truth for our wiki.
Have an idea for how to improve the wiki? Please help make our documentation better by following our instructions for contributing to the wiki.
Core documentation
Developing Oppia
- Contributing to Oppia Android
- Bazel
- Key Workflows
- Testing
- Developing Skills
- Frequent Errors and Solutions
- RTL Guidelines
- Working on UI
- Writing Design Docs
Developer Reference
- Code style
- Background Processing
- Dark mode
- Buf Guide
- Firebase Console Guide
- Platform Parameters & Feature Flags
- Work Manager
- Dependency Injection with Dagger
- Revert & regression policy
- Upgrading target SDK version
- Spotlight Guide
- Triaging Process
- Bazel
- Internationalization
- Terminology in Oppia
- Past Events