Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,31 @@ Reviewers of Oppia
-----------------------------------
Learn the procedure to :ref:`review translations <reviewatranslation>`, :ref:`voiceovers <reviewavoiceover>` and :ref:`questions <reviewaquestion>` in Oppia.

Setup Guide for Contributors
============================

1. Install Python 3.x

2. Create a virtual environment:
python -m venv env

3. Activate the environment:

Windows:
env\Scripts\activate

Linux/Mac:
source env/bin/activate

4. Install dependencies:
pip install -r requirements.txt

5. Install Sphinx:
pip install sphinx

6. Build HTML files:
make html

.. toctree::
:hidden:
:maxdepth: 2
Expand Down