forked from phil-opp/blog_os
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netlify.toml
66 lines (49 loc) · 1.33 KB
/
netlify.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build]
base = "blog"
publish = "blog/public"
command = "python before_build.py && gutenberg build"
[build.environment]
GUTENBERG_VERSION = "0.3.3"
[context.deploy-preview]
command = "python before_build.py && gutenberg build --base-url $DEPLOY_PRIME_URL"
[context.branch-deploy]
command = "python before_build.py && gutenberg build --base-url $DEPLOY_PRIME_URL"
[[redirects]]
from = "/second-edition/"
to = "/"
[[redirects]]
from = "/2015/08/18/multiboot-kernel/"
to = "/multiboot-kernel/"
[[redirects]]
from = "/rust-os/multiboot-kernel.html"
to = "/multiboot-kernel/"
[[redirects]]
from = "/2015/08/25/entering-longmode/"
to = "/entering-longmode/"
[[redirects]]
from = "/rust-os/entering-longmode.html"
to = "/entering-longmode/"
[[redirects]]
from = "/2015/09/02/setup-rust/"
to = "/set-up-rust/"
[[redirects]]
from = "/setup-rust.html"
to = "/set-up-rust/"
[[redirects]]
from = "/rust-os/setup-rust.html"
to = "/set-up-rust/"
[[redirects]]
from = "/2015/10/23/printing-to-screen/"
to = "/printing-to-screen/"
[[redirects]]
from = "/rust-os/printing-to-screen.html"
to = "/printing-to-screen/"
[[redirects]]
from = "/atom.xml"
to = "/rss.xml"
[[redirects]]
from = "/modifying-page-tables.html"
to = "/page-tables/"
[[redirects]]
from = "/handling-exceptions-with-naked-fns.html"
to = "/extra/naked-exceptions/"