-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy path.env.example
More file actions
48 lines (36 loc) · 1.09 KB
/
.env.example
File metadata and controls
48 lines (36 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# run `cp .env.example .env.local`
# for server side
SENTRY_ENABLED="false"
# for client side
NEXT_PUBLIC_SENTRY_ENABLED="false"
NEXT_PUBLIC_SENTRY_DSN=""
# Resend (For emails) Create account and paste API keys in .env.local
RESEND_API_KEY=""
# Upstash Redis (For subscription tokens) Create account and paste API keys in .env.local
UPSTASH_REDIS_REST_URL=""
UPSTASH_REDIS_REST_TOKEN=""
# Used for /api
AUTH_TOKEN=""
# Personal Info for sending invoice automatically, check /api/generate-invoice
# Sellet Info
SELLER_NAME="Adam Smith"
SELLER_ADDRESS="London, UK"
SELLER_VAT_NO="12345"
SELLER_EMAIL="seller@mail.com"
SELLER_ACCOUNT_NUMBER="12345"
SELLER_SWIFT_BIC="12345"
# Buyer Information
BUYER_NAME="Random Company"
BUYER_ADDRESS="Bristol, UK"
BUYER_VAT_NO="12345"
BUYER_EMAIL="buyer@mail.com"
INVOICE_NET_PRICE="10000"
INVOICE_EMAIL_RECIPIENT="seller@mail.com"
INVOICE_EMAIL_COMPANY_TO="buyer@mail.com"
# Telegram notifications
TELEGRAM_BOT_TOKEN=""
TELEGRAM_CHAT_ID=""
# Google drive api
GOOGLE_DRIVE_CLIENT_EMAIL="example@mail.com"
GOOGLE_DRIVE_PRIVATE_KEY=""
GOOGLE_DRIVE_PARENT_FOLDER_ID=""