Skip to content

Commit

Permalink
feat: update .env.example to include Bitly and OpenAI API keys
Browse files Browse the repository at this point in the history
  • Loading branch information
ibnsultan committed Dec 7, 2024
1 parent 554e06c commit 3832c62
Showing 1 changed file with 32 additions and 27 deletions.
59 changes: 32 additions & 27 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,27 +1,32 @@
APP_NAME=Surveyr
APP_ENV=local
APP_KEY=
APP_DOWN=false
APP_DEBUG=false
APP_PORT=8000
APP_URL=http://localhost:8000/

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=surveyr
DB_USERNAME=root
DB_PASSWORD=
DB_CHARSET=utf8
DB_COLLATION=utf8_unicode_ci

MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_DEBUG=SERVER
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null

GOOGLE_CLIENT_ID_KEY=your-google-client-idd
GOOGLE_CLIENT_SECRET_KEY=your-google-client-secret
APP_NAME=Surveyr
APP_ENV=local
APP_KEY=
APP_DOWN=false
APP_DEBUG=false
APP_PORT=8000
APP_URL=http://localhost:8000/

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=surveyr
DB_USERNAME=root
DB_PASSWORD=
DB_CHARSET=utf8
DB_COLLATION=utf8_unicode_ci

MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_DEBUG=SERVER
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null

GOOGLE_CLIENT_ID_KEY=your-google-client-idd
GOOGLE_CLIENT_SECRET_KEY=your-google-client-secret

BITLY_API_KEY=bitly-api-key

OPENAI_API_KEY=your-openai-api-key
OPENAI_TEXTGEN_MODEL=gpt-4o

0 comments on commit 3832c62

Please sign in to comment.