-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (27 loc) · 1.09 KB
/
Copy path.env.example
File metadata and controls
33 lines (27 loc) · 1.09 KB
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
# PocketDock environment configuration
# Copy this file to .env and adjust values for your deployment:
# cp .env.example .env
#
# .env is gitignored — never commit your real secrets.
# --- Django ---
# Required in production (DEBUG=0). In development (DEBUG=1), a random key is auto-generated if unset.
DJANGO_SECRET_KEY=
# 1 = development (verbose errors, auto-generated SECRET_KEY).
# 0 = production (SECRET_KEY required, no debug pages, hosts must be whitelisted).
DEBUG=1
# Comma-separated list of allowed Host headers. Use your domain in production.
ALLOWED_HOSTS=localhost,127.0.0.1
# --- AutoDock Vina defaults ---
VINA_EXHAUSTIVENESS=8
VINA_NUM_MODES=9
VINA_BOX_PADDING=5.0
VINA_DEFAULT_BOX_SIZE=20.0
# --- Celery / Redis ---
# Inside docker-compose these are set to redis://redis:6379/0 automatically.
# Override only for non-Docker deployments.
# CELERY_BROKER_URL=redis://localhost:6379/0
# CELERY_RESULT_BACKEND=redis://localhost:6379/0
WORKER_CONCURRENCY=2
# --- External binaries ---
# Path to the P2Rank executable. Default works inside the provided Docker image.
P2RANK_BIN=/opt/p2rank/prank