mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
18 lines
485 B
Python
18 lines
485 B
Python
# -*- coding: utf-8 -
|
|
#
|
|
# This file is part of gunicorn released under the MIT license.
|
|
# See the NOTICE for more information.
|
|
|
|
import os
|
|
|
|
# options
|
|
SITE_NAME = "Green Unicorn"
|
|
SITE_URL = "http://www.gunicorn.org"
|
|
SITE_DESCRIPTION = "A Python port of Ruby's Unicorn project."
|
|
|
|
# paths
|
|
DOC_PATH = os.path.dirname(os.path.abspath(__file__))
|
|
TEMPLATES_PATH = os.path.join(DOC_PATH, "templates")
|
|
INPUT_PATH = os.path.join(DOC_PATH, "site")
|
|
OUTPUT_PATH = os.path.join(DOC_PATH, "htdocs")
|