diff --git a/site/config.toml b/site/config/_default/config.toml
similarity index 99%
rename from site/config.toml
rename to site/config/_default/config.toml
index 6d4810b705..b4787f4430 100644
--- a/site/config.toml
+++ b/site/config/_default/config.toml
@@ -2,8 +2,7 @@
[module]
[[module.imports]]
path = "github.com/chronosphereio/victor"
- # path = "../../../victor"
-
+
[[module.mounts]]
source = "content"
target = "content/docs"
diff --git a/site/config/development/config.toml b/site/config/development/config.toml
new file mode 100644
index 0000000000..0ff4846e37
--- /dev/null
+++ b/site/config/development/config.toml
@@ -0,0 +1,195 @@
+# Change the default theme to be use when building the site with Hugo
+[module]
+ [[module.imports]]
+ path = "../../../victor"
+
+ [[module.mounts]]
+ source = "content"
+ target = "content/docs"
+
+ [[module.mounts]]
+ source = "static"
+ target = "static"
+
+ [[module.mounts]]
+ source = "layouts"
+ target = "layouts"
+
+ [[module.mounts]]
+ source = "data"
+ target = "data"
+
+ [[module.mounts]]
+ source = "assets"
+ target = "assets"
+
+ [[module.mounts]]
+ source = "i18n"
+ target = "i18n"
+
+ [[module.mounts]]
+ source = "archetypes"
+ target = "archetypes"
+
+ignoreFiles = [ "\\.ttf$", "\\.woff$", "\\.woff2$", "\\.eot$" ]
+
+[permalinks]
+ "/" = "/docs/:section/:title/"
+ "faqs" = "/docs/:section/:title/"
+ "glossaries" = "/docs/:section/:title/"
+ "how_tos" = "/docs/:section/:title/"
+ "integrations" = "/docs/:section/:title/"
+ "m3coordinators" = "/docs/:section/:title/"
+ "m3dbs" = "/docs/:section/:title/"
+ "m3querys" = "/docs/:section/:title/"
+ "operational_guides" = "/docs/:section/:title/"
+ "overviews" = "/docs/:section/:title/"
+ "quickstarts" = "/docs/:section/:title/"
+ "troubleshootings" = "/docs/:section/:title/"
+
+# theme = "docs-theme"
+# baseURL = "/"
+languageCode = "en-US"
+defaultContentLanguage = "en"
+# staticDir = ["static"]
+
+title = "M3DB Documentation"
+metaDataFormat = "yaml"
+defaultContentLanguageInSubdir= true
+
+# Highlighting config.
+pygmentsCodeFences = true
+pygmentsUseClasses = false
+# Use the new Chroma Go highlighter in Hugo.
+pygmentsUseClassic = false
+#pygmentsOptions = "linenos=table"
+# See https://help.farbox.com/pygments.html
+# pygmentsStyle = "vs"
+
+enableGitInfo = true
+
+[frontmatter]
+# date = ["date", ":filename", "publishDate", "lastmod"]
+
+# Image processing configuration.
+[imaging]
+resampleFilter = "CatmullRom"
+quality = 75
+anchor = "smart"
+
+[services]
+[services.googleAnalytics]
+# Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback].
+# id = "UA-00000000-0"
+
+#fullversion = "v1.18.0"
+#version = "v1.18"
+githubbranch = "master"
+docsbranch = "master"
+deprecated = false
+#currentUrl = "https://kubernetes.io/home/"
+#nextUrl = "https://kubernetes-io-vnext-staging.netlify.com/"
+githubWebsiteRepo = "https://github.com/m3db/m3"
+githubWebsiteRaw = "raw.githubusercontent.com/m3db/m3"
+
+# Enable Algolia DocSearch
+# algolia_docsearch = false
+
+# Enable Lunr.js offline search
+offlineSearch = false
+
+[params]
+ # Prefix URL to edit current page. Will display an "Edit this page" button on top right hand corner of every page.
+ # Useful to give opportunity to people to create merge request for your doc.
+ # See the config.toml file from this documentation site to have an example.
+ # TODO: pattern to branch?
+ # TODO: bring back
+ # editURL = "https://github.com/m3db/m3/tree/master/site/content/"
+ # Author of the site, will be used in meta information
+ author = "m3"
+ # Description of the site, will be used in meta information
+ description = "m3documentation"
+ # Shows a checkmark for visited pages on the menu
+ showVisitedLinks = false
+ # Disable search function. It will hide search bar
+ disableSearch = false
+ # Javascript and CSS cache are automatically busted when new version of site is generated.
+ # Set this to true to disable this behavior (some proxies don't handle well this optimization)
+ disableAssetsBusting = false
+ # Set this to true to disable copy-to-clipboard button for inline code.
+ disableInlineCopyToClipBoard = true
+ # A title for shortcuts in menu is set by default. Set this to true to disable it.
+ disableShortcutsTitle = false
+ # When using mulitlingual website, disable the switch language button.
+ disableLanguageSwitchingButton = false
+ # Hide breadcrumbs in the header and only show the current page title
+ disableBreadcrumb = true
+ # Hide Next and Previous page buttons normally displayed full height beside content
+ disableNextPrev = true
+ # Order sections in menu by "weight" or "title". Default to "weight"
+ ordersectionsby = "weight"
+ # Change default color scheme with a variant one. Can be "red", "blue", "green".
+ themeVariant = "blue"
+ twitter = "m3db_io"
+ disableHomeIcon = true
+
+ [params.api]
+ localCordinator = "http://localhost:7201/"
+ apiEndpoint = "api/v1/"
+
+ # TODO: Might need to refactor some of the K8s shortcodes later
+# Add your release versions here
+# TODO: Enable when ready
+# [[params.versions]]
+# version = "1.0"
+# url = "https://master.kubeflow.org"
+# [[params.versions]]
+# version = "0.9"
+# url = "https://master.kubeflow.org"
+
+# version_menu = "Versions"
+
+# TODO: Do not like doing this really
+[markup]
+ [markup.goldmark]
+ [markup.goldmark.renderer]
+ unsafe = true
+ [markup.goldmark.parser]
+ attribute = true
+ autoHeadingID = true
+ autoHeadingIDType = "github"
+ [markup.tableOfContents]
+ endLevel = 3
+ ordered = false
+ startLevel = 2
+ [markup.goldmark.extensions]
+ definitionList = true
+ footnote = true
+ linkify = true
+ strikethrough = true
+ table = true
+ taskList = true
+ typographer = true
+
+[[menu.shortcuts]]
+pre = "
More
"
+name = " "
+identifier = "ds"
+url = "https://github.com/m3db/m3"
+weight = 10
+
+[[menu.shortcuts]]
+name = " "
+url = "https://bit.ly/m3slack"
+weight = 11
+
+[[menu.shortcuts]]
+name = " "
+url = "https://groups.google.com/forum/#!forum/m3db"
+weight = 12
+
+[outputs]
+home = [ "HTML", "RSS", "JSON"]
+page = [ "HTML"]
+section = [ "HTML"]
+chapter = [ "HTML"]
diff --git a/site/config/production/config.toml b/site/config/production/config.toml
new file mode 100644
index 0000000000..fbc273b919
--- /dev/null
+++ b/site/config/production/config.toml
@@ -0,0 +1,195 @@
+# Change the default theme to be use when building the site with Hugo
+[module]
+ [[module.imports]]
+ path = "github.com/chronosphereio/victor"
+
+ [[module.mounts]]
+ source = "content"
+ target = "content/docs"
+
+ [[module.mounts]]
+ source = "static"
+ target = "static"
+
+ [[module.mounts]]
+ source = "layouts"
+ target = "layouts"
+
+ [[module.mounts]]
+ source = "data"
+ target = "data"
+
+ [[module.mounts]]
+ source = "assets"
+ target = "assets"
+
+ [[module.mounts]]
+ source = "i18n"
+ target = "i18n"
+
+ [[module.mounts]]
+ source = "archetypes"
+ target = "archetypes"
+
+ignoreFiles = [ "\\.ttf$", "\\.woff$", "\\.woff2$", "\\.eot$" ]
+
+[permalinks]
+ "/" = "/docs/:section/:title/"
+ "faqs" = "/docs/:section/:title/"
+ "glossaries" = "/docs/:section/:title/"
+ "how_tos" = "/docs/:section/:title/"
+ "integrations" = "/docs/:section/:title/"
+ "m3coordinators" = "/docs/:section/:title/"
+ "m3dbs" = "/docs/:section/:title/"
+ "m3querys" = "/docs/:section/:title/"
+ "operational_guides" = "/docs/:section/:title/"
+ "overviews" = "/docs/:section/:title/"
+ "quickstarts" = "/docs/:section/:title/"
+ "troubleshootings" = "/docs/:section/:title/"
+
+# theme = "docs-theme"
+# baseURL = "/"
+languageCode = "en-US"
+defaultContentLanguage = "en"
+# staticDir = ["static"]
+
+title = "M3DB Documentation"
+metaDataFormat = "yaml"
+defaultContentLanguageInSubdir= true
+
+# Highlighting config.
+pygmentsCodeFences = true
+pygmentsUseClasses = false
+# Use the new Chroma Go highlighter in Hugo.
+pygmentsUseClassic = false
+#pygmentsOptions = "linenos=table"
+# See https://help.farbox.com/pygments.html
+# pygmentsStyle = "vs"
+
+enableGitInfo = true
+
+[frontmatter]
+# date = ["date", ":filename", "publishDate", "lastmod"]
+
+# Image processing configuration.
+[imaging]
+resampleFilter = "CatmullRom"
+quality = 75
+anchor = "smart"
+
+[services]
+[services.googleAnalytics]
+# Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback].
+# id = "UA-00000000-0"
+
+#fullversion = "v1.18.0"
+#version = "v1.18"
+githubbranch = "master"
+docsbranch = "master"
+deprecated = false
+#currentUrl = "https://kubernetes.io/home/"
+#nextUrl = "https://kubernetes-io-vnext-staging.netlify.com/"
+githubWebsiteRepo = "https://github.com/m3db/m3"
+githubWebsiteRaw = "raw.githubusercontent.com/m3db/m3"
+
+# Enable Algolia DocSearch
+# algolia_docsearch = false
+
+# Enable Lunr.js offline search
+offlineSearch = false
+
+[params]
+ # Prefix URL to edit current page. Will display an "Edit this page" button on top right hand corner of every page.
+ # Useful to give opportunity to people to create merge request for your doc.
+ # See the config.toml file from this documentation site to have an example.
+ # TODO: pattern to branch?
+ # TODO: bring back
+ # editURL = "https://github.com/m3db/m3/tree/master/site/content/"
+ # Author of the site, will be used in meta information
+ author = "m3"
+ # Description of the site, will be used in meta information
+ description = "m3documentation"
+ # Shows a checkmark for visited pages on the menu
+ showVisitedLinks = false
+ # Disable search function. It will hide search bar
+ disableSearch = false
+ # Javascript and CSS cache are automatically busted when new version of site is generated.
+ # Set this to true to disable this behavior (some proxies don't handle well this optimization)
+ disableAssetsBusting = false
+ # Set this to true to disable copy-to-clipboard button for inline code.
+ disableInlineCopyToClipBoard = true
+ # A title for shortcuts in menu is set by default. Set this to true to disable it.
+ disableShortcutsTitle = false
+ # When using mulitlingual website, disable the switch language button.
+ disableLanguageSwitchingButton = false
+ # Hide breadcrumbs in the header and only show the current page title
+ disableBreadcrumb = true
+ # Hide Next and Previous page buttons normally displayed full height beside content
+ disableNextPrev = true
+ # Order sections in menu by "weight" or "title". Default to "weight"
+ ordersectionsby = "weight"
+ # Change default color scheme with a variant one. Can be "red", "blue", "green".
+ themeVariant = "blue"
+ twitter = "m3db_io"
+ disableHomeIcon = true
+
+ [params.api]
+ localCordinator = "http://localhost:7201/"
+ apiEndpoint = "api/v1/"
+
+ # TODO: Might need to refactor some of the K8s shortcodes later
+# Add your release versions here
+# TODO: Enable when ready
+# [[params.versions]]
+# version = "1.0"
+# url = "https://master.kubeflow.org"
+# [[params.versions]]
+# version = "0.9"
+# url = "https://master.kubeflow.org"
+
+# version_menu = "Versions"
+
+# TODO: Do not like doing this really
+[markup]
+ [markup.goldmark]
+ [markup.goldmark.renderer]
+ unsafe = true
+ [markup.goldmark.parser]
+ attribute = true
+ autoHeadingID = true
+ autoHeadingIDType = "github"
+ [markup.tableOfContents]
+ endLevel = 3
+ ordered = false
+ startLevel = 2
+ [markup.goldmark.extensions]
+ definitionList = true
+ footnote = true
+ linkify = true
+ strikethrough = true
+ table = true
+ taskList = true
+ typographer = true
+
+[[menu.shortcuts]]
+pre = "More
"
+name = " "
+identifier = "ds"
+url = "https://github.com/m3db/m3"
+weight = 10
+
+[[menu.shortcuts]]
+name = " "
+url = "https://bit.ly/m3slack"
+weight = 11
+
+[[menu.shortcuts]]
+name = " "
+url = "https://groups.google.com/forum/#!forum/m3db"
+weight = 12
+
+[outputs]
+home = [ "HTML", "RSS", "JSON"]
+page = [ "HTML"]
+section = [ "HTML"]
+chapter = [ "HTML"]