-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
executable file
·61 lines (53 loc) · 2.52 KB
/
.env
File metadata and controls
executable file
·61 lines (53 loc) · 2.52 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# ==============================================================================
# AiiDA Docker Environment Configuration
# ==============================================================================
# This is the SINGLE SOURCE OF TRUTH for all Docker services
# Docker Compose automatically loads this file when running in this directory
# ==============================================================================
# PostgreSQL Configuration
# ==============================================================================
POSTGRES_USER=aiida_user
POSTGRES_PASSWORD=123
POSTGRES_DB=aiida_db
PGDATA=/var/lib/postgresql/data
# ==============================================================================
# RabbitMQ Configuration
# ==============================================================================
RABBITMQ_USER=aiida
RABBITMQ_PASSWORD=123
RABBITMQ_VHOST=aiida
# ==============================================================================
# AiiDA Database Connection (uses Docker service names)
# ==============================================================================
DB_HOST=postgres
DB_PORT=5432
DB_USER=${POSTGRES_USER}
DB_PASSWORD=${POSTGRES_PASSWORD}
DB_NAME=${POSTGRES_DB}
# ==============================================================================
# AiiDA RabbitMQ Connection (uses Docker service names)
# ==============================================================================
RABBITMQ_HOST=rabbitmq
RABBITMQ_PORT=5672
# ==============================================================================
# PostgreSQL SSL Configuration
# ==============================================================================
PGGSSENCMODE=disable
# ==============================================================================
# AiiDA User Information
# ==============================================================================
USER_EMAIL=your.email@example.com
USER_FIRSTNAME=YourFirstName
USER_LASTNAME=YourLastName
USER_INSTITUTION=YourInstitution
# ==============================================================================
# AiiDA Profile Configuration
# ==============================================================================
PROFILE_NAME=docker
REPO_URI=file:///var/lib/aiida/repository
# ==============================================================================
# SSH Configuration
# ==============================================================================
SSH_KEY_DIR=/ssh_host
SSH_CONFIG_DIR=/root/.ssh
COMPUTER_WORKDIR=/home/aiida/workdir