-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathblog.conf
More file actions
28 lines (19 loc) · 803 Bytes
/
blog.conf
File metadata and controls
28 lines (19 loc) · 803 Bytes
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
# Use the Flask debugger?
# Provides an interactive console and detailed error reporting.
DEBUG = True
# Pages and posts location, extensions and encoding.
# Extensions is either a string (one extension) or a tuple of strings (multiple).
PAGE_ROOT = 'page'
PAGE_EXTENSIONS = '.html'
PAGE_ENCODING = 'utf-8-sig'
POST_ROOT = 'post'
POST_EXTENSIONS = '.markdown'
POST_ENCODING = 'utf-8-sig'
# The built-in web server host and port.
# '127.0.0.1' means that the web server is private and only you can see it.
# Set it to '0.0.0.0' to make the server public, but be aware of the
# security implications, such as remote code execution when DEBUG is True.
WWW_HOST = '127.0.0.1'
WWW_PORT = 8000
# You can add additional settings to this file.
# In your templates, those will be accessible in config.*