forked from xtekky/chatgpt-clone
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsample.env
19 lines (19 loc) · 827 Bytes
/
sample.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
DJANGO_ADMIN_URL="79b780ab0b79492ebe031eafe9de0af4/"
DJANGO_ALLOWED_HOSTS="localhost,0.0.0.0,chatgptclone.local"
DJANGO_DEBUG="True"
DJANGO_SECRET_KEY="f4894ca8-07c8-4c57-ad50-5c9f186b873f"
DJANGO_SERVER_EMAIL="[email protected]"
DJANGO_SETTINGS_MODULE="config.settings.local"
HOST="localhost"
OPENAI_API_BASE_URL="https://api.openai.com"
OPENAI_API_KEY="*********************"
OPENAI_MODEL="gpt-3.5-turbo"
OPENAI_SYSTEM_MESSAGE="You are a helpful assistant. You will respond in a cheerful, friendly tone with a succint style. Your responses should aim to be three paragraphs or less."
PORT="8000"
POSTGRES_DB="chatgpt_clone"
POSTGRES_HOST="localhost"
POSTGRES_PASSWORD="8a47ef67-d639-40c3-a0b0-beea01407e7d"
POSTGRES_PORT="5432"
POSTGRES_USER="chatgptclone_app"
REDIS_URL="redis://localhost:6379/0"
WEB_CONCURRENCY="2"