From cfd57efca39d67ddb1d104fa3c193b5aaee7b29b Mon Sep 17 00:00:00 2001 From: Alexandre Teles Date: Thu, 29 Sep 2022 02:01:25 -0300 Subject: [PATCH] change extensions and add env setup file --- .devcontainer/devcontainer.json | 6 +++--- env.sh | 11 +++++++++++ 2 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 env.sh diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3b1ee19..b395f1f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -53,13 +53,13 @@ "ionutvmi.path-autocomplete", "christian-kohler.path-intellisense", "donjayamanne.python-extension-pack", - "ms-python.vscode-pylance", "redhat.vscode-yaml", "kevinrose.vsc-python-indent", - "kevinrose.vsc-python-indent", "bungcip.better-toml", "rangav.vscode-thunder-client", - "rohinivsenthil.postcode" + "kdcro101.vscode-redis", + "cweijan.vscode-database-client2", + "phu1237.vs-browser" ] } }, diff --git a/env.sh b/env.sh new file mode 100644 index 0000000..568e846 --- /dev/null +++ b/env.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# This script is used to setup the environment variables + +export GITHUB_TOKEN=your_token +export UVICORN_HOST=0.0.0.0 +export UVICORN_PORT=8000 +export UVICORN_LOG_LEVEL=debug +export REDIS_URL=127.0.0.1 +export REDIS_PORT=6379 +export SENTRY_DSN=your_sentry_dsn \ No newline at end of file