forked from DNA-BarKeeper/barkeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env-example
94 lines (60 loc) · 2.62 KB
/
.env-example
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
## Main project details
# State the name of your project as it should appear throughout the web application here
MAIN_PROJECT_NAME=My Project
# Change to an actual domain that you own and that points to your server
PROJECT_DOMAIN=example.org
# Only change the ports if your project has a specific need for this
PORT=80
SSL_PORT=443
## Rails configuration
RAILS_ENV=production
# Please generate a secret key base with 'make secret' and add it here
SECRET_KEY_BASE=
## Puma
# Only change these values if you know what you're doing!
PUMA_PORT=3000
RAILS_MAX_THREADS=5
PUMA_WORKERS=1
## Redis and Sidekiq config
# Only change these values if you know what you're doing!
REDIS_HOST=redis
SIDEKIQ_CONCURRENCY=4
CACHE_URL=redis://redis:6379/0
JOB_WORKER_URL=redis://redis:6379/0
## PostgreSQL database
DB_USER=barkeeper
# Change 'mypassword' to a secure one before installing the BarKeeper app
DB_PASSWORD=mypassword
# Only change this values if you know what you're doing!
DATABASE_URL=postgresql://${DB_USER}:${DB_PASSWORD}@postgres:5432/barkeeper?encoding=unicode&pool=5&timeout=5000
## Devise
# Please generate a secret key with 'make secret' and add it here before installing the app
DEVISE_SECRET_KEY=
## Default admin account (will be used to create an initial admin user account at database creation)
ADMIN_NAME=Admin
# Change to a secure password before setup
ADMIN_PASSWORD=securepassword
## External user, that can be used to authenticate when using API-only actions
API_USER_NAME=external_user
# Change to a secure password before setup!
API_PASSWORD=strongpassword
## External server config
# SSH address of a remote server on which more computationally intense analyses will be run. If none is given, analyses will be done locally
# Make sure to install SATIVA and the BarPipe module locally in the latter case
REMOTE_SERVER_PATH=
# Name of user account to be used on remote server
REMOTE_USER=
## WebDAV user and password if any file should be obtained from WebDAV
WEBDAV_USER=
WEBDAV_PASSWORD=
## SATIVA
# Path to SATIVA executable (sativa.py) either locally or on a remote server
SATIVA_PATH=
# Path to directory where SATIVA result should be created on remote server. If the analysis is run locally they will always be stored in <rails_root>/SATIVA_results
# A subdirectory with the title of the current analysis will always be generated automatically
SATIVA_RESULTS_PATH=
# Please specify the path of the BarPipe directory here either on a remote or your local server (e.g. /home/test/BarPipe)
BARCODING_PIPE_PATH=
# Path to directory where BarPipe result should be created
BARCODING_PIPE_RESULTS_PATH=