diff --git a/djangoldp/cli.py b/djangoldp/cli.py
index dc95df7eb364d3249619d7fbb52a21d0a62e1b26..5f034d0f21b3487fda5ebcac8267273aefc12441 100644
--- a/djangoldp/cli.py
+++ b/djangoldp/cli.py
@@ -88,3 +88,18 @@ def configure():
 
     except subprocess.CalledProcessError as e:
         click.echo(f'Configuration error: {e}')
+
+
+@main.command()
+def runserver():
+
+    """Run the Django embeded webserver."""
+
+    try:
+        # shortcut to the djangoldp.management command
+        path = str(Path.cwd() / 'manage.py')
+        cmd = [sys.executable, path, 'runserver', '0.0.0.0:8000']
+        subprocess.run(cmd).check_returncode()
+
+    except subprocess.CalledProcessError as e:
+        click.echo(f'Execution error: {e}')
diff --git a/djangoldp/management/commands/configure.py b/djangoldp/management/commands/configure.py
index 3639c75fee7f89fde2966f0fb406027d7a4b3512..d43dec62cef356cc74f8a517ae6f58f86d677ac7 100644
--- a/djangoldp/management/commands/configure.py
+++ b/djangoldp/management/commands/configure.py
@@ -6,7 +6,7 @@ from django.core.exceptions import ValidationError
 
 class Command(BaseCommand):
 
-    help = 'Install server dependencies'
+    help = 'Initialize the DjangoLDP backend'
 
     def handle(self, *args, **options):
 
diff --git a/djangoldp/templates/development/config.yml b/djangoldp/templates/development/config.yml
index 81bf5ae632bf00dc11d7a6a1ca11cc78ddbe30f2..bde0c47755b7ee259be368d23e471fb97e093871 100644
--- a/djangoldp/templates/development/config.yml
+++ b/djangoldp/templates/development/config.yml
@@ -5,6 +5,3 @@ dependencies:
 ldppackages:
   - djangoldp_account
   - oidc_provider
-
-server:
-  site_url: 'https://localhost:8000'
diff --git a/docs/using_client.md b/docs/using_client.md
index ddb64aa58995853550a1e3e742161918d03957e3..0b75d685beb1559f82d28138d0582d41e2d65350 100644
--- a/docs/using_client.md
+++ b/docs/using_client.md
@@ -1,16 +1,17 @@
 # Using the client
 
+Setup the project:
 ```
-# docker run --rm -v $PWD:/code -w /code -it python:3.6 bash
+# docker run --rm -v $PWD:/code -w /code -p 127.0.0.1:8000:8000 -it python:3.6 bash
 # pip install .
 # cd /tmp/
-# djangoldp start myproject
+# djangoldp startproject myproject
 # cd myproject
 # djangoldp install
 # djangoldp configure
 ```
 
-Play with the installation:
+Play with it:
 ```
-# python manage.py runserver
+# djangoldp runserver
 ```