diff --git a/.circleci/integration-test.py b/.circleci/integration-test.py index 2374c16..6bd5b40 100755 --- a/.circleci/integration-test.py +++ b/.circleci/integration-test.py @@ -100,7 +100,7 @@ def run_test(image_name, test_name, bootstrap_pip_spec, test_files, upgrade, ins if upgrade: run_container_command( test_name, - f'curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py | python3 -' + f'curl https://tljh.jupyter.org/bootstrap.py | python3 -' ) run_container_command( diff --git a/docs/howto/auth/awscognito.rst b/docs/howto/auth/awscognito.rst index a4bb805..1b74df4 100644 --- a/docs/howto/auth/awscognito.rst +++ b/docs/howto/auth/awscognito.rst @@ -50,7 +50,7 @@ able to configure the instance automatically, replace relevant config variables: ############################################## # Need to ensure oauthenticator is bumped to 0.10.0 ############################################## - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ --admin insightadmin diff --git a/docs/install/amazon.rst b/docs/install/amazon.rst index 57d322a..7169a4b 100644 --- a/docs/install/amazon.rst +++ b/docs/install/amazon.rst @@ -101,7 +101,7 @@ Let's create the server on which we can run JupyterHub. .. code-block:: bash #!/bin/bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ --admin diff --git a/docs/install/azure.rst b/docs/install/azure.rst index c3a15b3..2d86f61 100644 --- a/docs/install/azure.rst +++ b/docs/install/azure.rst @@ -135,7 +135,7 @@ A new screen with all the options for Virtual Machines in Azure will displayed. .. code:: bash #!/bin/bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ --admin diff --git a/docs/install/custom-server.rst b/docs/install/custom-server.rst index 541f3f1..454c28f 100644 --- a/docs/install/custom-server.rst +++ b/docs/install/custom-server.rst @@ -59,7 +59,7 @@ Step 1: Installing The Littlest JupyterHub .. code-block:: bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py | sudo -E python3 - --admin + curl https://tljh.jupyter.org/bootstrap.py | sudo -E python3 - --admin .. note:: diff --git a/docs/install/digitalocean.rst b/docs/install/digitalocean.rst index 6d07e35..65c68c2 100644 --- a/docs/install/digitalocean.rst +++ b/docs/install/digitalocean.rst @@ -63,7 +63,7 @@ Let's create the server on which we can run JupyterHub. .. code-block:: bash #!/bin/bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ --admin diff --git a/docs/install/google.rst b/docs/install/google.rst index e5c47fd..36067a8 100644 --- a/docs/install/google.rst +++ b/docs/install/google.rst @@ -144,7 +144,7 @@ Let's create the server on which we can run JupyterHub. .. code-block:: bash #!/bin/bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ --admin diff --git a/docs/install/jetstream.rst b/docs/install/jetstream.rst index 6a0219a..c8b131a 100644 --- a/docs/install/jetstream.rst +++ b/docs/install/jetstream.rst @@ -86,7 +86,7 @@ Let's create the server on which we can run JupyterHub. .. code-block:: bash #!/bin/bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ --admin diff --git a/docs/install/ovh.rst b/docs/install/ovh.rst index 1edf361..4e688ba 100644 --- a/docs/install/ovh.rst +++ b/docs/install/ovh.rst @@ -71,7 +71,7 @@ Let's create the server on which we can run JupyterHub. .. code-block:: bash #!/bin/bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ --admin diff --git a/docs/topic/customizing-installer.rst b/docs/topic/customizing-installer.rst index 8ef2e01..3615e37 100644 --- a/docs/topic/customizing-installer.rst +++ b/docs/topic/customizing-installer.rst @@ -9,7 +9,7 @@ is executed as: .. code-block:: bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ @@ -33,7 +33,7 @@ during install you would: .. code-block:: bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ --admin admin-user1:password-user1 --admin admin-user2:password-user2 @@ -41,7 +41,7 @@ during install you would: .. code-block:: bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ --admin admin-user1 --admin admin-user2 @@ -49,7 +49,7 @@ during install you would: .. code-block:: bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ --admin admin-user1:password-user1 --admin admin-user2 @@ -66,7 +66,7 @@ in your new hub, you would run: .. code-block:: bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ --user-requirements-txt-url https://raw.githubusercontent.com/data-8/materials-sp18/master/requirements.txt @@ -97,7 +97,7 @@ you would use: .. code-block:: bash - curl https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py \ + curl https://tljh.jupyter.org/bootstrap.py \ | sudo python3 - \ --plugin git+https://github.com/yuvipanda/tljh-pangeo@v0.1