-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkadmconfig.py
More file actions
24 lines (19 loc) · 852 Bytes
/
mkadmconfig.py
File metadata and controls
24 lines (19 loc) · 852 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
# default configuration for mkdocs-admin.py
class Config(object):
# session key used for site notifications
SECRET_KEY = 'CHANGEME'
# host and port to be used when running this script manually
# when using a webserver this will be the location to proxy to
HOST = 'localhost'
PORT = 5000
# log file to write to, if not specified the log will be written to
# the path the script is run
LOGFILE = ''
# mkdocs paths and configuration is below
# MKDOCS_BIN : path the mkdocs binary itself, can be in a virtualenv
# MKDOCS_DIR : directory of the mkdocs project written with trailing /
# MKDOCS_CLEAN : will not retain html files that do not have a matching
# markdown file in the docs directory if set to True
MKDOCS_BIN = ''
MKDOCS_DIR = ''
MKDOCS_CLEAN = True