change extensions and add env setup file

This commit is contained in:
Alexandre Teles 2022-09-29 02:01:25 -03:00
parent cab951cab1
commit cfd57efca3
No known key found for this signature in database
GPG Key ID: 260D825F04C0527E
2 changed files with 14 additions and 3 deletions

View File

@ -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"
]
}
},

11
env.sh Normal file
View File

@ -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