diff --git a/.env.example b/.env.example
index fc1aef49d..2b6931761 100644
--- a/.env.example
+++ b/.env.example
@@ -9,11 +9,11 @@ NEXT_PUBLIC_GITHUB_ID=""
NEXT_PUBLIC_GITHUB_APP_NAME=""
# Sentry DSN for error monitoring
NEXT_PUBLIC_SENTRY_DSN=""
-# Enable/Disable OAUTH - default 0 for selfhosted instance
+# Enable/Disable OAUTH - default 0 for selfhosted instance
NEXT_PUBLIC_ENABLE_OAUTH=0
# Enable/Disable sentry
NEXT_PUBLIC_ENABLE_SENTRY=0
-# Enable/Disable session recording
+# Enable/Disable session recording
NEXT_PUBLIC_ENABLE_SESSION_RECORDER=0
# Enable/Disable event tracking
NEXT_PUBLIC_TRACK_EVENTS=0
@@ -59,15 +59,16 @@ AWS_S3_BUCKET_NAME="uploads"
FILE_SIZE_LIMIT=5242880
# GPT settings
-OPENAI_API_KEY=""
-GPT_ENGINE=""
+OPENAI_API_BASE="https://api.openai.com/v1" # change if using a custom endpoint
+OPENAI_API_KEY="sk-" # add your openai key here
+GPT_ENGINE="gpt-3.5-turbo" # use "gpt-4" if you have access
# Github
GITHUB_CLIENT_SECRET="" # For fetching release notes
# Settings related to Docker
DOCKERIZED=1
-# set to 1 If using the pre-configured minio setup
+# set to 1 If using the pre-configured minio setup
USE_MINIO=1
# Nginx Configuration
@@ -79,4 +80,4 @@ DEFAULT_PASSWORD="password123"
# SignUps
ENABLE_SIGNUP="1"
-# Auto generated and Required that will be generated from setup.sh
\ No newline at end of file
+# Auto generated and Required that will be generated from setup.sh
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 75ccb884c..6baa0bb07 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -23,7 +23,6 @@ You can open a new issue with this [issue form](https://github.com/makeplane/pla
- Python version 3.8+
- Postgres version v14
- Redis version v6.2.7
-- pnpm version 7.22.0
### Setup the project
diff --git a/README.md b/README.md
index 7e9422f18..0e893ebe3 100644
--- a/README.md
+++ b/README.md
@@ -19,14 +19,14 @@