From 8a29ca5d51a647edc59d8b55ae592ee1eac74630 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Mon, 30 Apr 2018 09:37:14 -0700 Subject: toaster-manual: Updated bad links and added two sections The links to the DATABASES, SECRET_KEY, and STATIC_ROOT were bad. They were pointing to old dated software. I updated the links. Also, added a couple new sections. One is how to start a Toaster environment without its web server. The other is how to start a Toaster environment without a build server. (From yocto-docs rev: afe2708014600c0a86c649f6533dd1f6317fe742) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- .../toaster-manual-setup-and-use.xml | 60 ++++++++++++++++++++-- 1 file changed, 57 insertions(+), 3 deletions(-) (limited to 'documentation/toaster-manual') diff --git a/documentation/toaster-manual/toaster-manual-setup-and-use.xml b/documentation/toaster-manual/toaster-manual-setup-and-use.xml index 68cfd5ee10..25762a603a 100644 --- a/documentation/toaster-manual/toaster-manual-setup-and-use.xml +++ b/documentation/toaster-manual/toaster-manual-setup-and-use.xml @@ -61,6 +61,60 @@ +
+ Setting Up Toaster Without a Web Server + + + You can start a Toaster environment without starting its + web server. This is useful for the following: + + + Capturing a command-line build’s statistics into + the Toaster database for examination later. + + + Capturing a command-line build’s statistics when + the Toaster server is already running. + + + The following commands show how to start a Toaster environment + without starting its web server, perform BitBake operations, + and then shut down the Toaster environment. + Once the environment is shut down, you can examine the + BitBake build statistics: + + $ source toaster start noweb + $ bitbake target + $ source toaster stop + + +
+ +
+ Setting Up Toaster Without a Build Server + + + You can start a Toaster environment with the + “New Projects” feature disabled. + Doing so is useful for the following: + + + Sharing your build results over the web server while + blocking others from starting builds on your host. + + + Allowing only local command-line builds to be captured + into the Toaster database. + + + Use the following command to set up Toaster without a + build server: + + $ source toaster start nobuild webport=port + + +
+
Setting up External Access @@ -312,7 +366,7 @@ Edit the - DATABASE + DATABASES settings: DATABASES = { @@ -329,14 +383,14 @@ Edit the - SECRET_KEY: + SECRET_KEY: SECRET_KEY = 'your_secret_key' Edit the - STATIC_ROOT: + STATIC_ROOT: STATIC_ROOT = '/var/www/toaster/static_files/' -- cgit v1.2.3-54-g00ecf