diff --git a/documentation/toaster-manual/toaster-manual-setup-and-use.xml b/documentation/toaster-manual/toaster-manual-setup-and-use.xml
index 25762a603a..0d7bbefe67 100644
--- a/documentation/toaster-manual/toaster-manual-setup-and-use.xml
+++ b/documentation/toaster-manual/toaster-manual-setup-and-use.xml
@@ -414,58 +414,48 @@
$ cd /var/www/toaster/poky/
$ ./bitbake/lib/toaster/manage.py migrate
- $ TOASTER_DIR=`pwd` TOASTER_CONF=./meta-poky/conf/toasterconf.json \
+ $ TOASTER_DIR=`pwd` TEMPLATECONF='poky' \
./bitbake/lib/toaster/manage.py checksettings
$ ./bitbake/lib/toaster/manage.py collectstatic
-
+ In the previous example, from the poky
+ directory, the migrate command
+ ensures the database schema changes have propagated
+ correctly (i.e. migrations).
+ The next line sets the Toaster root directory
+ TOASTER_DIR and the location
+ of the Toaster configuration file
+ TOASTER_CONF, which is relative to
+ TOASTER_DIR.
+ The TEMPLATECONF value reflects the
+ contents of poky/.templateconf, and
+ by default, should include the string "poky".
+ For more information on the Toaster configuration
+ file, see the
+ "Configuring Toaster"
+ section.
-
- For the above set of commands, after moving to the
- poky directory,
- the migrate
- command ensures the database
- schema has had changes propagated correctly (i.e.
- migrations).
-
-
-
- The next line sets the Toaster root directory
- TOASTER_DIR and the location of
- the Toaster configuration file
- TOASTER_CONF, which is
- relative to the Toaster root directory
- TOASTER_DIR.
- For more information on the Toaster configuration file,
- see the
- "Configuring Toaster"
- section.
-
-
-
- This line also runs the checksettings
- command, which configures the location of the Toaster
- Build Directory.
- The Toaster root directory TOASTER_DIR
- determines where the Toaster build directory
- is created on the file system.
- In the example above,
- TOASTER_DIR is set as follows:
-
+ This line also runs the checksettings
+ command, which configures the location of the Toaster
+ Build Directory.
+ The Toaster root directory TOASTER_DIR
+ determines where the Toaster build directory
+ is created on the file system.
+ In the example above,
+ TOASTER_DIR is set as follows:
+
/var/www/toaster/poky
-
- This setting causes the Toaster build directory to be:
-
+
+ This setting causes the Toaster build directory to be:
+
/var/www/toaster/poky/build
-
-
+
-
- Finally, the collectstatic command
- is a Django framework command that collects all the
- statically served files into a designated directory to
- be served up by the Apache web server as defined by
- STATIC_ROOT.
+ Finally, the collectstatic command
+ is a Django framework command that collects all the
+ statically served files into a designated directory to
+ be served up by the Apache web server as defined by
+ STATIC_ROOT.
Add an Apache configuration file for Toaster to your Apache web