mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-30 18:00:56 +01:00
39 lines
985 B
Python
39 lines
985 B
Python
# encoding: utf-8
|
|
|
|
import os
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
PROJECT_SOURCE_FILE_FOLDER = os.path.join(BASE_DIR, "spiders")
|
|
|
|
# 配置python虚拟环境的路径
|
|
PYTHON_ENV_PATH = '/Users/chennan/Desktop/2019/env/bin/python'
|
|
|
|
# 爬虫部署路径
|
|
PROJECT_DEPLOY_FILE_FOLDER = os.path.join(BASE_DIR, 'deployfile')
|
|
|
|
PROJECT_LOGS_FOLDER = os.path.join(BASE_DIR, 'deployfile/logs')
|
|
PROJECT_TMP_FOLDER = '/tmp'
|
|
|
|
# celery variables
|
|
BROKER_URL = 'redis://127.0.0.1:56379/0'
|
|
CELERY_RESULT_BACKEND = 'mongodb://127.0.0.1:57017/'
|
|
CELERY_MONGODB_BACKEND_SETTINGS = {
|
|
'database': 'crawlab_test',
|
|
'taskmeta_collection': 'tasks_celery',
|
|
}
|
|
CELERY_TIMEZONE = 'Asia/Shanghai'
|
|
CELERY_ENABLE_UTC = True
|
|
|
|
# flower variables
|
|
FLOWER_API_ENDPOINT = 'http://localhost:5555/api'
|
|
|
|
# database variables
|
|
MONGO_HOST = '127.0.0.1'
|
|
MONGO_PORT = 57017
|
|
MONGO_DB = 'crawlab_test'
|
|
|
|
# flask variables
|
|
DEBUG = True
|
|
FLASK_HOST = '127.0.0.1'
|
|
FLASK_PORT = 8000
|