-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env.example
executable file
·32 lines (26 loc) · 1.05 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
### THIS IS EXAMPLE `.env` file
# ********** INDEX **********
#
# - DATABASE
# - SHARED
# - RABBITMQ
# - GOOGLE CALENDAR
# - DATABASE ************************************************************************************************
DATABASE_URL="postgresql://syncit:S3cr3tP@s5w0rd@localhost:5433/syncit?schema=syncit"
# ***********************************************************************************************************
# - SHARED **************************************************************************************************
NEXT_PUBLIC_WEBAPP_URL='http://localhost:5173'
# For local development you can use ngrok url
# @see https://ngrok.com/
BE_PUBLIC_URL=''
# - RABBITMQ
RABBITMQ_USER=guest
RABBITMQ_PASSWORD=guest
RABBITMQ_HOST=localhost:5672
RABBITMQ_QUEUE_NAME=events-watch
# You can use: `openssl rand -base64 24` to generate Secret
SECRET=''
# - GOOGLE CALENDAR/MEET/LOGIN
# Needed to enable Google Calendar integration and Login with Google
# @see https://github.com/tikalk/syncit#obtaining-the-google-api-credentials
GOOGLE_API_CREDENTIALS=''