From 0525a2ba8ced96b12a968462be2db77170861099 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Wed, 26 Apr 2023 22:08:36 -0400 Subject: [PATCH 01/22] Create devcontainer.json --- .devcontainer/devcontainer.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..39b55cbc --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,28 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/python +{ + "name": "Python 3", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/universal:2", + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + // Use 'forwardPorts' to make a list of ports inside the container available locally. + "forwardPorts": [ + 5003 + ], + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": "pip install -r requirements.txt", + "postAttachCommand": "python main.py", + "customizations": { + "codespaces": { + "openFiles": [ + ".well-known/ai-plugin.json", + "openapi.yaml" + ] + } + } + // Configure tool-specific properties. + // "customizations": {}, + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} From b209c174f71a5a887e9fffdcacca32377083557f Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 16:35:16 +0000 Subject: [PATCH 02/22] add codespace url --- .devcontainer/addcodespacename.sh | 14 ++++++++++++++ .devcontainer/devcontainer.json | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .devcontainer/addcodespacename.sh diff --git a/.devcontainer/addcodespacename.sh b/.devcontainer/addcodespacename.sh new file mode 100644 index 00000000..a1b89ad8 --- /dev/null +++ b/.devcontainer/addcodespacename.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# Determine the value of SITE_HOST based on whether the project is opened in a Codespace +if [ -z ${CODESPACE_NAME+x} ]; then + SITE_HOST="http://localhost:5003" +else + SITE_HOST="https://${CODESPACE_NAME}-5003.${GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN}" +fi + +# Replace "localhost:5003" with the value of SITE_HOST in the ai-plugin.json file +sed -i "s#http://localhost:5003#${SITE_HOST}#g" .well-known/ai-plugin.json + +# Replace "localhost:5003" with the value of SITE_HOST in the openapi.yaml file +sed -i "s#http://localhost:5003#${SITE_HOST}#g" openapi.yaml diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 39b55cbc..57accfe3 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,7 +12,7 @@ ], // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "pip install -r requirements.txt", - "postAttachCommand": "python main.py", + "postAttachCommand": "${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; python main.py", "customizations": { "codespaces": { "openFiles": [ From 3dc80b7f1ca14a3f74f761cc6e23a8cf8623ea96 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 16:40:34 +0000 Subject: [PATCH 03/22] adding permissions to run file --- .devcontainer/devcontainer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 57accfe3..2b24a5cc 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -10,6 +10,9 @@ "forwardPorts": [ 5003 ], + "runArgs": [ + "-c", "chmod +x ${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh" + ], // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "pip install -r requirements.txt", "postAttachCommand": "${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; python main.py", From 0def4e0ed4574a47f4e1da2dccc49cb4c3214adf Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 16:45:11 +0000 Subject: [PATCH 04/22] remove args --- .devcontainer/devcontainer.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 2b24a5cc..4db5f8b6 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -10,12 +10,9 @@ "forwardPorts": [ 5003 ], - "runArgs": [ - "-c", "chmod +x ${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh" - ], // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "pip install -r requirements.txt", - "postAttachCommand": "${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; python main.py", + "postAttachCommand": "chmod +x ${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; ${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; python main.py", "customizations": { "codespaces": { "openFiles": [ From 3078dd0ae2cfd4720b32e47276d6c64e2cb21ea9 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 17:03:05 +0000 Subject: [PATCH 05/22] move to postCreateCommand --- .devcontainer/devcontainer.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 4db5f8b6..d934a677 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,8 +11,13 @@ 5003 ], // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "pip install -r requirements.txt", - "postAttachCommand": "chmod +x ${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; ${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; python main.py", + "postCreateCommand": + [ + "chmod +x ${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh", + "pip install -r requirements.txt" + + ], + "postAttachCommand": "${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; python main.py", "customizations": { "codespaces": { "openFiles": [ From 5251c8ec0234ffd302bf6540c26c1f75af318ce5 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 17:08:30 +0000 Subject: [PATCH 06/22] final devcontainer --- .devcontainer/devcontainer.json | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d934a677..4db5f8b6 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,13 +11,8 @@ 5003 ], // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": - [ - "chmod +x ${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh", - "pip install -r requirements.txt" - - ], - "postAttachCommand": "${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; python main.py", + "postCreateCommand": "pip install -r requirements.txt", + "postAttachCommand": "chmod +x ${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; ${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; python main.py", "customizations": { "codespaces": { "openFiles": [ From 8426a43f15ce08a03407bf16aa91947ec0f1723c Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 13:53:10 -0400 Subject: [PATCH 07/22] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5976d0a0..7ab98be5 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Get a Todo list ChatGPT plugin up and running in under 5 minutes using Python. If you do not already have plugin developer access, please [join the waitlist](https://openai.com/waitlist/plugins). -## Setup +## Local Setup To install the required packages for this plugin, run the following command: @@ -26,6 +26,10 @@ Once the local server is running: The plugin should now be installed and enabled! You can start with a question like "What is on my todo list" and then try adding something to it as well! +## GitHub CodeSpaces Setup + +[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/github.com/${{ github.repository }}?branch=${{ github.ref_name }}&devcontainer_path=/.devcontainer/basics/devcontainer.json) + ## Getting help If you run into issues or have questions building a plugin, please join our [Developer community forum](https://community.openai.com/c/chat-plugins/20). From a65aa1c8cf0f732aeaf851e43fe38aeb588800d2 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 15:02:42 -0400 Subject: [PATCH 08/22] Update README.md --- README.md | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ab98be5..61975969 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ Get a Todo list ChatGPT plugin up and running in under 5 minutes using Python. If you do not already have plugin developer access, please [join the waitlist](https://openai.com/waitlist/plugins). +[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/openai/plugins-quickstart?devcontainer_path=/.devcontainer/basics/devcontainer.json) + ## Local Setup To install the required packages for this plugin, run the following command: @@ -27,8 +29,32 @@ Once the local server is running: The plugin should now be installed and enabled! You can start with a question like "What is on my todo list" and then try adding something to it as well! ## GitHub CodeSpaces Setup +_A codespace is a development environment that's hosted in the cloud. You can build and run this plugin via a GitHub Codespace by following the directions below:_ + +1. Open this environment in a GitHub Codespace by choosing "Use this template" > "Open in Codespace" as pictured below. +Green button titled use this template with dropdown options of create new repository and open in codespace + +2. Allow the Codespace a few minutes to finish installing all necessary dependencies. It may take awhile, but keep in mind that GitHub Codespaces is running all the install commands, so you don't have to. + +3. Once everything is installed, you should see that a forwarded port is now running the plugin. **Set the port visibility to public.** +Choosing public port visibility for forwarded port + +4. Copy the forwarded port's local address. It should follow this naming convention + +`https://---5003.preview.app.github.dev` + +5. Navigate to https://chat.openai.com. -[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/github.com/${{ github.repository }}?branch=${{ github.ref_name }}&devcontainer_path=/.devcontainer/basics/devcontainer.json) +6. In the Model drop down, select "Plugins" (note, if you don't see it there, you don't have access yet). + +7. Select "Plugin store" + +8. Select "Develop your own plugin" + +9. Enter in the local address to your forwarded port (the one you copied in Step 3), then select "Find manifest file". + + +The plugin should now be installed and enabled! You can start with a question like "What is on my todo list" and then try adding something to it as well! ## Getting help From 64b03a003f8a616ce2c8c4fabff6a070400fda9c Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 15:28:10 -0400 Subject: [PATCH 09/22] Update devcontainer.json --- .devcontainer/devcontainer.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 4db5f8b6..cd2d10d3 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -21,8 +21,4 @@ ] } } - // Configure tool-specific properties. - // "customizations": {}, - // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. - // "remoteUser": "root" } From d0727a59ec7fcf8092ba7d30d3ead3ea9c2b3c86 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 17:35:12 -0400 Subject: [PATCH 10/22] no need to use workspaceFolder variable Co-authored-by: Josh Spicer --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index cd2d10d3..cbae99a6 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,7 +12,7 @@ ], // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "pip install -r requirements.txt", - "postAttachCommand": "chmod +x ${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; ${containerWorkspaceFolder}/.devcontainer/addcodespacename.sh; python main.py", + "postAttachCommand": ".devcontainer/addcodespacename.sh && python main.py", "customizations": { "codespaces": { "openFiles": [ From 3ec5efddc6661cce317cb5180adbf6cc8b0a5990 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 17:36:16 -0400 Subject: [PATCH 11/22] incorrect capitalization of GitHub Codespaces Co-authored-by: Josh Spicer --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 61975969..49fffa73 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Once the local server is running: The plugin should now be installed and enabled! You can start with a question like "What is on my todo list" and then try adding something to it as well! -## GitHub CodeSpaces Setup +## GitHub Codespaces Setup _A codespace is a development environment that's hosted in the cloud. You can build and run this plugin via a GitHub Codespace by following the directions below:_ 1. Open this environment in a GitHub Codespace by choosing "Use this template" > "Open in Codespace" as pictured below. From 56517d612c1c22d93fb09d97f1b6a64294361327 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 17:37:04 -0400 Subject: [PATCH 12/22] remove unnecessary container details --- .devcontainer/devcontainer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index cbae99a6..cedb9bd6 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,4 @@ -// For format details, see https://aka.ms/devcontainer.json. For config options, see the -// README at: https://github.com/devcontainers/templates/tree/main/src/python +// For format details, see https://aka.ms/devcontainer.json. { "name": "Python 3", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile From 79cf7a04b3851700f5b65a2df76e6fb60c9f3410 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 17:40:15 -0400 Subject: [PATCH 13/22] Update devcontainer.json --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index cedb9bd6..f68bdc30 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ // For format details, see https://aka.ms/devcontainer.json. { - "name": "Python 3", + "name": "ChatGPT Quickstart Plugins", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile "image": "mcr.microsoft.com/devcontainers/universal:2", // Features to add to the dev container. More info: https://containers.dev/features. From ebc2387e073569ca8bab21e676434f786148d6a6 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 17:43:42 -0400 Subject: [PATCH 14/22] add set -e to improve debugging experience Co-authored-by: Josh Spicer --- .devcontainer/addcodespacename.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/addcodespacename.sh b/.devcontainer/addcodespacename.sh index a1b89ad8..e494e256 100644 --- a/.devcontainer/addcodespacename.sh +++ b/.devcontainer/addcodespacename.sh @@ -1,5 +1,5 @@ #!/bin/bash - +set -e # Determine the value of SITE_HOST based on whether the project is opened in a Codespace if [ -z ${CODESPACE_NAME+x} ]; then SITE_HOST="http://localhost:5003" From 16d93e11d2abf13b9412c5f15a003a62f513c540 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 17:52:11 -0400 Subject: [PATCH 15/22] Update .devcontainer/addcodespacename.sh Co-authored-by: Josh Spicer --- .devcontainer/addcodespacename.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/addcodespacename.sh b/.devcontainer/addcodespacename.sh index e494e256..37383e75 100644 --- a/.devcontainer/addcodespacename.sh +++ b/.devcontainer/addcodespacename.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e # Determine the value of SITE_HOST based on whether the project is opened in a Codespace -if [ -z ${CODESPACE_NAME+x} ]; then +if [ -z "${CODESPACE_NAME+x}" ]; then SITE_HOST="http://localhost:5003" else SITE_HOST="https://${CODESPACE_NAME}-5003.${GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN}" From 51110004f2f455f062ce609dc7627c6ddb275c13 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 21:57:45 +0000 Subject: [PATCH 16/22] adding the chmod until I get the alternative --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f68bdc30..5852eeb6 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,7 +11,7 @@ ], // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "pip install -r requirements.txt", - "postAttachCommand": ".devcontainer/addcodespacename.sh && python main.py", + "postAttachCommand": "chmod +x .devcontainer/addcodespacename.sh && .devcontainer/addcodespacename.sh && python main.py", "customizations": { "codespaces": { "openFiles": [ From aab7bcad8dcab1eedf4e59e1552098f63684bb8c Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 18:17:35 -0400 Subject: [PATCH 17/22] no need to replace strings for local setup Co-authored-by: Samruddhi Khandale --- .devcontainer/addcodespacename.sh | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.devcontainer/addcodespacename.sh b/.devcontainer/addcodespacename.sh index 37383e75..fd2aa5b3 100644 --- a/.devcontainer/addcodespacename.sh +++ b/.devcontainer/addcodespacename.sh @@ -1,14 +1,13 @@ #!/bin/bash set -e # Determine the value of SITE_HOST based on whether the project is opened in a Codespace -if [ -z "${CODESPACE_NAME+x}" ]; then - SITE_HOST="http://localhost:5003" -else - SITE_HOST="https://${CODESPACE_NAME}-5003.${GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN}" -fi +if [ -n "$CODESPACE_NAME" ]; then + SITE_HOST="https://${CODESPACE_NAME}-5003.${GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN}" + + # Replace "localhost:5003" with the value of SITE_HOST in the ai-plugin.json file + sed -i "s#http://localhost:5003#${SITE_HOST}#g" .well-known/ai-plugin.json -# Replace "localhost:5003" with the value of SITE_HOST in the ai-plugin.json file -sed -i "s#http://localhost:5003#${SITE_HOST}#g" .well-known/ai-plugin.json + # Replace "localhost:5003" with the value of SITE_HOST in the openapi.yaml file + sed -i "s#http://localhost:5003#${SITE_HOST}#g" openapi.yaml +fi -# Replace "localhost:5003" with the value of SITE_HOST in the openapi.yaml file -sed -i "s#http://localhost:5003#${SITE_HOST}#g" openapi.yaml From 955a32c2721d157adc0efafd903a97909d548ab9 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 22:24:49 +0000 Subject: [PATCH 18/22] hopefully no need to chmod --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 5852eeb6..f68bdc30 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,7 +11,7 @@ ], // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "pip install -r requirements.txt", - "postAttachCommand": "chmod +x .devcontainer/addcodespacename.sh && .devcontainer/addcodespacename.sh && python main.py", + "postAttachCommand": ".devcontainer/addcodespacename.sh && python main.py", "customizations": { "codespaces": { "openFiles": [ From cb7022311ea7d4aa6dc8b4129fb849d855fde6ec Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 22:33:04 +0000 Subject: [PATCH 19/22] Make addcodespacename.sh executable --- .devcontainer/addcodespacename.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 .devcontainer/addcodespacename.sh diff --git a/.devcontainer/addcodespacename.sh b/.devcontainer/addcodespacename.sh old mode 100644 new mode 100755 From da2f9f118058f1a2428c059ce4f3ce440d9da0ff Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 1 May 2023 18:57:58 -0400 Subject: [PATCH 20/22] copy local address update --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 49fffa73..84a57379 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,10 @@ _A codespace is a development environment that's hosted in the cloud. You can bu 3. Once everything is installed, you should see that a forwarded port is now running the plugin. **Set the port visibility to public.** Choosing public port visibility for forwarded port -4. Copy the forwarded port's local address. It should follow this naming convention +4. Copy the forwarded port's local address. ( **Tip:** use the clipboard icon to copy and paste the local address!) +Highlighting clip board icon which shows tooltip thats says Copy local address + -`https://---5003.preview.app.github.dev` 5. Navigate to https://chat.openai.com. From 199c27a510d7665fa8437832c332df5049dd42ee Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Wed, 3 May 2023 13:28:45 -0400 Subject: [PATCH 21/22] changing devcontainer name --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f68bdc30..dc4fc6e2 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,7 +2,7 @@ { "name": "ChatGPT Quickstart Plugins", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/devcontainers/universal:2", + "image": "mcr.microsoft.com/devcontainers/python:0-3.11", // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, // Use 'forwardPorts' to make a list of ports inside the container available locally. From 6b57cffeb2a8d37727eeea921cdd9e1b59c76552 Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Mon, 8 May 2023 13:37:49 -0400 Subject: [PATCH 22/22] removing unused property --- .devcontainer/devcontainer.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index dc4fc6e2..e14708b9 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,8 +3,6 @@ "name": "ChatGPT Quickstart Plugins", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile "image": "mcr.microsoft.com/devcontainers/python:0-3.11", - // Features to add to the dev container. More info: https://containers.dev/features. - // "features": {}, // Use 'forwardPorts' to make a list of ports inside the container available locally. "forwardPorts": [ 5003