forked from rapax00/checkout-bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 782 Bytes
/
.env.example
File metadata and controls
30 lines (24 loc) · 782 Bytes
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
# Nostr
SIGNER_PRIVATE_KEY = 'YOUR_PRIVATE_KEY'
ADMIN_PUBLIC_KEY = 'ADMIN_PUBLIC_KEY'
# Ticketing
POS_WALIAS = 'YOUR_WALIAS@YOUR_DOMAIN'
DISCOUNT_CODES = '{"code1":10,"code2":20,"code3":30}'
MAX_TICKETS = 'YOUR_MAX_TICKETS'
# Sendy
SENDY_API_URL = 'YOUR_SENDY_BASE_URL'
SENDY_API_KEY = 'YOUR_SENDY_API_KEY'
SENDY_LIST_ID = 'YOUR_SENDY_LIST_ID'
# Sentry
SENTRY_DSN = 'YOUR_SENTRY_DSN'
SENTRY_AUTH_TOKEN = 'YOUR_SENTRY_AUTH_TOKEN'
SENTRY_ORG = 'YOUR_SENTRY_ORG'
SENTRY_PROJECT = 'YOUR_SENTRY_PROYECT'
# AWS SES
AWS_ACCESS_KEY_ID = 'YOUR_AWS_ACCESS'
AWS_SECRET_ACCESS_KEY = 'YOUR_AWS_SECRET'
# DB
DATABASE_URL = 'YOUR_DATABASE_URL'
DIRECT_URL = 'YOUR_POOLED_DATABASE_URL'
# Ticket
NEXT_PUBLIC_TICKET = '{"title": "Premium ticket","value": 15,"currency": "USD","type": "general"}'