From 82cf6b5caa98e40b50d91406a693ee8affb4df21 Mon Sep 17 00:00:00 2001 From: eamanu Date: Sun, 7 Apr 2019 21:28:56 -0300 Subject: [PATCH 1/3] Add 'vagrant up' install.rst on "next time" section Before run ```vagrant ssh``` the VM must be power on. So, the step ```vagrant up``` is added. --- docs/source/install.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/install.rst b/docs/source/install.rst index e0b2032fe..e3517e2a0 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -44,6 +44,7 @@ credentials to log in to Django admin. You will only need to run the following two commands the next time you want to work on python.org:: + $ vagrant up $ vagrant ssh $ ./manage.py runserver 0.0.0.0:8000 From c1bff3a2c7d159f0d839924b1dbc1dcba57f481f Mon Sep 17 00:00:00 2001 From: Emmanuel Arias Date: Mon, 8 Apr 2019 07:37:07 -0300 Subject: [PATCH 2/3] Add two more commands. --- docs/source/install.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/source/install.rst b/docs/source/install.rst index e3517e2a0..bf2f30127 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -41,11 +41,13 @@ Now use your favorite browser to go to http://localhost:8001/. The admin pages can be found at http://localhost:8001/admin/. You can use your superuser credentials to log in to Django admin. -You will only need to run the following two commands the next time you want to +You will only need to run the following four commands the next time you want to work on python.org:: $ vagrant up $ vagrant ssh + $ cd ~/pythondotorg + $ . venv/bin/activate $ ./manage.py runserver 0.0.0.0:8000 .. _Vagrant: https://www.vagrantup.com/downloads.html From 697774201429c997f31a4b8cf33463d0baef16e6 Mon Sep 17 00:00:00 2001 From: Emmanuel Arias Date: Mon, 8 Apr 2019 07:39:30 -0300 Subject: [PATCH 3/3] Five commands --- docs/source/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/install.rst b/docs/source/install.rst index bf2f30127..c898edda3 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -41,7 +41,7 @@ Now use your favorite browser to go to http://localhost:8001/. The admin pages can be found at http://localhost:8001/admin/. You can use your superuser credentials to log in to Django admin. -You will only need to run the following four commands the next time you want to +You will only need to run the following five commands the next time you want to work on python.org:: $ vagrant up