use 0.0.0.0 #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tutor Setup with Plugin Verification | |
on: [push] | |
jobs: | |
setup-tutor: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# - name: Set up Python 3.11 | |
# uses: actions/setup-python@v2 | |
# with: | |
# python-version: '3.11' | |
- name: Install Tutor | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install tutor | |
# - name: Add extra LMS requirements | |
# run: | | |
# # Create a custom Tutor configuration to add extra pip requirements for the LMS | |
# tutor config save --set OPENEDX_EXTRA_PIP_REQUIREMENTS="eox-core\neox-tenant" | |
# - name: Rebuild the LMS image to include the extra requirements | |
# run: | | |
# tutor images build openedx | |
- name: Configure LMS to be externally accessible | |
run: | | |
tutor config save --set LMS_HOST=0.0.0.0 | |
- name: Start Tutor | |
run: | | |
tutor local launch -I | |
- name: Install additional LMS requirements | |
run: | | |
tutor local run lms pip install eox-core eox-tenant | |
tutor local restart lms | |
- name: Wait for services to be up | |
run: | | |
sleep 60 # Adjust the sleep time as necessary for services to be fully ready | |
- name: Check LMS logs | |
run: | | |
tutor local logs lms --tail=100 # Retrieve the last 100 lines of LMS logs | |
- name: Check LMS heartbeat endpoint | |
run: | | |
curl -f http://0.0.0.0:8000/heartbeat |