Skip to content

Commit 7b6fccd

Browse files
committed
Update e2e_tests/docker-compose.yml
1 parent 80153ab commit 7b6fccd

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

e2e_tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def django_server():
1919
try:
2020
response = requests.get("http://localhost:8010/") # pylint: disable=missing-timeout
2121
if response.status_code == 200:
22-
# Set up Git origin and trigger course build in gitmanager container
22+
# Trigger course build in gitmanager container
2323
print("A+ server is ready. Initializing and building aplus-manual course via gitmanager...")
2424
env = os.environ.copy()
2525
env["COMPOSE_FILE"] = "docker-compose.yml"

e2e_tests/docker-compose.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ volumes:
33
services:
44
plus:
55
image: apluslms/run-aplus-front
6-
command: "python3 manage.py runserver 0.0.0.0:8000 --noreload"
6+
command: "python3 manage.py runserver 0.0.0.0:8000 --noreload --insecure"
77
environment:
88
USE_GITMANAGER: 'true'
9+
APLUS_DEBUG: 'true'
910
APLUS_BASE_URL: 'http://localhost:8010/'
1011
APLUS_REMOTE_PAGE_HOSTS_MAP: |
1112
{

0 commit comments

Comments
 (0)