-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
29 lines (24 loc) · 1.22 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
# Hostname or IP for the application
HOST=localhost
# Port number for the application
PORT=3000
# To use QuickBlox, you'll need to create an app and obtain the necessary credentials.
# Follow the instructions in the article "How to Create an App and Use QuickBlox Admin Panel" to create your app and find the appropriate API URL.
# Article link: https://quickblox.com/blog/how-to-create-an-app-and-use-quickblox-admin-panel/
QUICKBLOX_API_URL=https://api.quickblox.com
QUICKBLOX_APP_ID=<QUICKBLOX_APP_ID>
QUICKBLOX_AUTH_KEY=<QUICKBLOX_AUTH_KEY>
QUICKBLOX_AUTH_SECRET=<QUICKBLOX_AUTH_SECRET>
#
FIREBASE_PROJECT_ID=<FIREBASE_PROJECT_ID>
# API Key for AI API
# Replace <OPENAI_API_KEY> with your actual API key.
# You can obtain your API key from the OpenAI platform.
# Visit the OpenAI documentation for more information on authentication and obtaining an API key.
# Documentation link: https://platform.openai.com/docs/api-reference/authentication
OPENAI_API_KEY=<OPENAI_API_KEY>
# Path to SSL certificates (Optional)
# If you need an HTTPS connection for the application, set the path to the SSL certificates.
# If you leave these parameters empty, the application will be launched with an HTTP connection.
SSL_KEY_FILE=''
SSL_CERT_FILE=''