* Update Travis's Slack config * Fix styling * Update prerequisites * Update prerequisites * Update README * Expand installation docs * Specify minimum Postgres version [ci skip] * Change specified PostgreSQL version * Update netlify.toml * Update schema * Update algolia links [ci skip] * Update installation docs * Remove TODO * Update installation path/title * Update top level installation guide * Change installations directory name * Rename installations to installation in docs * Fix headline typo * Add liquid tags and adjust main readme
37 lines
1 KiB
TOML
37 lines
1 KiB
TOML
# Global settings applied to the whole site.
|
|
#
|
|
# “publish” is the directory to publish (relative to root of your repo),
|
|
# “command” is your build command,
|
|
# “base” is directory to change to before starting build. if you set base:
|
|
# that is where we will look for package.json/.nvmrc/etc not repo root!
|
|
|
|
[build]
|
|
base = "docs/"
|
|
[[redirects]]
|
|
from = "http://docs.dev.to"
|
|
to = "https://docs.dev.to"
|
|
[[redirects]]
|
|
from = "http://docs.dev.to/*"
|
|
to = "https://docs.dev.to/:splat"
|
|
status = 301
|
|
[[redirects]]
|
|
from = "docs.dev.to"
|
|
to = "https://docs.dev.to"
|
|
[[redirects]]
|
|
from = "docs.dev.to/*"
|
|
to = "https://docs.dev.to/:splat"
|
|
status = 301
|
|
[[redirects]]
|
|
from = "http://devto.netlify.com"
|
|
to = "https://docs.dev.to"
|
|
[[redirects]]
|
|
from = "http://devto.netlify.com/*"
|
|
to = "https://docs.dev.to/:splat"
|
|
status = 301
|
|
[[redirects]]
|
|
from = "https://devto.netlify.com"
|
|
to = "https://docs.dev.to"
|
|
[[redirects]]
|
|
from = "https://devto.netlify.com/*"
|
|
to = "https://docs.dev.to/:splat"
|
|
status = 301
|