diff --git a/.gitignore b/.gitignore index 2f39bba1..abaaeea6 100644 --- a/.gitignore +++ b/.gitignore @@ -167,3 +167,4 @@ backends/ !backends/__init__.py web/.env.build web/.env.dev +web/.env.development diff --git a/web/.env b/web/.env index ed602e42..6cdee019 100644 --- a/web/.env +++ b/web/.env @@ -1,3 +1,4 @@ VITE_GPT4ALL_API = http://localhost:9600 # http://localhost:9600 VITE_GPT4ALL_API_CHANGE_ORIGIN = 0 # FALSE VITE_GPT4ALL_API_SECURE = 0 # FALSE +VITE_GPT4ALL_API_BASEURL = / # FALSE diff --git a/web/.gitignore b/web/.gitignore index 9ef7e4a4..683e17f1 100644 --- a/web/.gitignore +++ b/web/.gitignore @@ -25,3 +25,6 @@ coverage *.njsproj *.sln *.sw? + +# REST Client files (VSCODE extension for making GET POST requests easy and fst from text files) +*.http diff --git a/web/src/components/Discussion.vue b/web/src/components/Discussion.vue index 079e9018..0dcab0f0 100644 --- a/web/src/components/Discussion.vue +++ b/web/src/components/Discussion.vue @@ -1,22 +1,54 @@