From e3e160a7b260d5abdeb5c1d8eecdd3e43093d654 Mon Sep 17 00:00:00 2001 From: canonnervio Date: Tue, 6 Nov 2018 18:17:52 +0100 Subject: [PATCH] Modified command for Windows users Added comment to use double quotes for heroku pg:backups setup under Windows. --- docs/deployment-on-heroku.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/deployment-on-heroku.rst b/docs/deployment-on-heroku.rst index d7d95184d..f753aa5a4 100644 --- a/docs/deployment-on-heroku.rst +++ b/docs/deployment-on-heroku.rst @@ -10,6 +10,8 @@ Run these commands to deploy the project to Heroku: heroku create --buildpack https://github.com/heroku/heroku-buildpack-python heroku addons:create heroku-postgresql:hobby-dev + # On Windows use double quotes for the time zone, e.g. + # heroku pg:backups schedule --at "02:00 America/Los_Angeles" DATABASE_URL heroku pg:backups schedule --at '02:00 America/Los_Angeles' DATABASE_URL heroku pg:promote DATABASE_URL