From e9efac403c7fe9865c6cca57a6b89acaf9b08ba1 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Sun, 1 Sep 2019 22:55:18 +1000 Subject: [PATCH] Tweak install docs --- docs/start.rst | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/start.rst b/docs/start.rst index b6853ffc23..5e08bf8634 100644 --- a/docs/start.rst +++ b/docs/start.rst @@ -54,15 +54,19 @@ Initialize Database Once install settings are correctly configured (in *config.yaml*) run the initial setup script: -``make setup`` +``make migrate`` -which performs the following functions: - -* Run initial database migrations, creating the required tables, etc -* Create initial administrator account +which performs the initial database migrations, creating the required tables, etc The database should now be installed! +Create Admin Account +-------------------- + +Create an initial superuser (administrator) account for the InvenTree instance: + +``make superuser`` + Run Development Server ----------------------