-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
65 lines (44 loc) · 1.76 KB
/
.env.example
File metadata and controls
65 lines (44 loc) · 1.76 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
62
63
64
65
#
# This file is an example of the environment variables needed to run the application and related tasks.
#
# Create a file named `.env.local` in the same directory as this file and fill in the values.
#
# GitHub API token
GITHUB_TOKEN=
# RAYON_NUM_THREADS is the number of threads to use for parallel processing
RAYON_NUM_THREADS=50
# Set the log level for the roast library
RUST_LOG=roast=INFO
# AWS Configuration
# AWS_ACCESS_KEY_ID is the access key ID for AWS
AWS_ACCESS_KEY_ID=
# AWS_SECRET_ACCESS_KEY is the secret access key for AWS
AWS_SECRET_ACCESS_KEY=
# AWS_REGION is the region for AWS services
AWS_REGION=
# AWS_S3_BUCKET is the name of the S3 bucket to use
AWS_S3_BUCKET=
# Database Configuration
# ROAST_DB_HOST is the hostname of the database server
#ROAST_DB_HOST=localhost
# ROAST_DB_PORT is the port number of the database server
#ROAST_DB_PORT=5432
# ROAST_DB_NAME is the name of the database to connect to
#ROAST_DB_NAME=roast
# ROAST_DB_USR is the username to connect to the database
#ROAST_DB_USR=roast
# ROAST_DB_PWD is the password to connect to the database
#ROAST_DB_PWD=roast
# ROAST_DATABASE_URL is the connection string for the database
#ROAST_DATABASE_URL=postgres://${ROAST_DB_USR}:${ROAST_DB_PWD}@${ROAST_DB_HOST}:${ROAST_DB_PORT}/${ROAST_DB_NAME}
# ROAST_DATABASE_SSL_MODE is the SSL mode for the database connection
#ROAST_DATABASE_SSL_MODE=prefer
# ROAST_DATABASE_SSL_CA is the path to the CA certificate for SSL
#ROAST_DATABASE_SSL_CA=
# ROAST_DATABASE_SSL_CERT is the path to the client certificate for SSL
#ROAST_DATABASE_SSL_CERT=
# ROAST_DATABASE_SSL_KEY is the path to the client key for SSL
#ROAST_DATABASE_SSL_KEY=
# Export Configuration
# ROAST_EXPORT_PATH is the path to the directory where exported data will be saved
#ROAST_EXPORT_PATH=