6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-21 08:59:02 +00:00

Fix runserver dev command

Close #172
This commit is contained in:
Régis Behmo 2019-02-13 17:09:07 +01:00
parent 2e2dfc73a6
commit 22aff4dbf5
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
# Latest # Latest
- [Bugfix] Fix `runserver` dev command (#172)
- [Minor] Fix non-https link to documentation in pypi - [Minor] Fix non-https link to documentation in pypi
- [Minor] Fix `createuser` documentation - [Minor] Fix `createuser` documentation

View File

@ -43,7 +43,7 @@ def runserver(root, edx_platform_path, edx_platform_settings, service):
port = service_port(service) port = service_port(service)
docker_compose_run_with_port( docker_compose_run_with_port(
root, edx_platform_path, edx_platform_settings, port, root, edx_platform_path, edx_platform_settings, port,
service, "./manage.py", "runserver", "0.0.0.0:{}".format(port), service, "./manage.py", service, "runserver", "0.0.0.0:{}".format(port),
) )
@click.command( @click.command(