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