-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.test
103 lines (72 loc) · 2.17 KB
/
.env.test
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
95
96
97
98
99
100
101
102
103
# API server port
PORT=4000
# Hawk API database URL
MONGO_HAWK_DB_URL=mongodb://localhost:55011/hawk
# Events database URL
MONGO_EVENTS_DB_URL=mongodb://localhost:55011/hawk_events
# MongoDB settings
MONGO_RECONNECT_TRIES=60
MONGO_RECONNECT_INTERVAL=1000
# JWT secret for user's refresh token
JWT_SECRET_REFRESH_TOKEN=abacaba
# JWT secret for user's access token
JWT_SECRET_ACCESS_TOKEN=belarus
# JWT secret for project's tokens (used in catcher)
JWT_SECRET_PROJECT_TOKEN=qwerty
# Option to enable playground (if true playground will be available at /graphql route)
PLAYGROUND_ENABLE=false
# SMTP mail settings
## SMTP server adress
SMTP_HOST=smtp.yandex.ru
## SMTP server port
SMTP_PORT=465
## SMTP server username (for examle, from your Yandex account)
SMTP_USERNAME=
## SMTP server password (for examle, from your Yandex account)
SMTP_PASSWORD=
## Sender name
SMTP_SENDER_NAME=
## Mail from which letters are sent
SMTP_SENDER_ADDRESS=
# AMQP URL
AMQP_URL=
# Billing settings
BILLING_DEBUG=true
BILLING_COMPANY_EMAIL="[email protected]"
### Accounting module ###
# Accounting service URL
CODEX_ACCOUNTING_URL=
# Enable or disable tls verify
TLS_VERIFY=true
# Files with certs
TLS_CA_CERT=/usr/src/app/src/accounting/ca.pem
TLS_CERT=/usr/src/app/src/accounting/tls/client.pem
TLS_KEY=/usr/src/app/src/accounting/tls/client-key.pem
## GitHub OAuth app client ID
GITHUB_CLIENT_ID=fakedata
## GitHub OAuth app clinet secret
GITHUB_CLIENT_SECRET=fakedata
## Hawk API public url (used in OAuth to redirect to callback, should match OAuth app callback URL)
API_URL=http://127.0.0.1:4000
## Garage url
GARAGE_URL=http://127.0.0.1:8080
## Garage login url
GARAGE_LOGIN_URL=http://127.0.0.1:8080/login
## Hawk Catcher token from hawk.so
HAWK_CATCHER_TOKEN=
## Telegram bot url to send log messages
TELEGRAM_MAIN_CHAT_URL=
## Telegam bot url for operations with money
TELEGRAM_MONEY_CHAT_URL=
# Cloudpayments public id
CLOUDPAYMENTS_PUBLIC_ID=
# Cloudpayments secret string
CLOUDPAYMENTS_SECRET=
# INN of legal entity for CloudKassir
LEGAL_ENTITY_INN=123
# AWS S3 Bucket Configuration
AWS_S3_ACCESS_KEY_ID=
AWS_S3_SECRET_ACCESS_KEY=
AWS_S3_BUCKET_NAME=
AWS_S3_BUCKET_BASE_URL=
AWS_S3_BUCKET_ENDPOINT=