diff --git a/docs/build.sh b/docs/build.sh
index 9433af843543a478bd51ae3337ec70d7f9b90aba..5894ad346e0b1060fdc0ef5a049bba058004d3a4 100755
--- a/docs/build.sh
+++ b/docs/build.sh
@@ -3,11 +3,11 @@
 # -------------------------------------------------------------------
 # Set vars (change if used in another repo)
 
-base_name=eris-pm
+base_name=eris-db
 user_name=eris-ltd
 docs_site=monax.io
 docs_name=./docs/documentation
-slim_name=pm
+slim_name=db
 
 # -------------------------------------------------------------------
 # Set vars (usually shouldn't be changed)
diff --git a/docs/generator.go b/docs/generator.go
index 6f3e88e18405a103f6360e3c1f125de9b589c265..901256d42d60fb7cb280836c6d9b7fc88abbf032 100644
--- a/docs/generator.go
+++ b/docs/generator.go
@@ -14,7 +14,7 @@ import (
 )
 
 // Repository maintainers should customize the next two lines.
-var Description = "Blockchain Client"                                         // should match the docs site name
+var Description = "Blockchain Client"                                       // should match the docs site name
 var RenderDir = fmt.Sprintf("./docs/documentation/db/%s/", version.VERSION) // should be the "shortversion..."
 
 // The below variables should be updated only if necessary.
@@ -78,9 +78,10 @@ func RenderFiles(cmdRaw *cobra.Command, tmpl *template.Template) error {
 
 func main() {
 	// Repository maintainers should populate the top level command object.
-	// pm := commands.EPMCmd
-	// commands.InitEPM()
-	// commands.AddGlobalFlags()
+	erisDbCommand := commands.ErisDbCmd
+	commands.InitErisDbCli()
+	commands.AddCommands()
+	commands.AddGlobalFlags()
 
 	// Make the proper directory.
 	var err error
@@ -108,7 +109,7 @@ func main() {
 	}
 
 	// Render the templates.
-	if err = RenderFiles(commands.ErisDbCmd, tmpl); err != nil {
+	if err = RenderFiles(erisDbCommand, tmpl); err != nil {
 		panic(err)
 	}
 }