We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b358a12 commit b5addeaCopy full SHA for b5addea
.devcontainer/.bashrc
@@ -1,2 +1,8 @@
1
# Export VENV_DIR environment variable for virtual environment path
2
+
3
export VENV_DIR="$HOME/.venv/mcpgateway"
4
5
+# Automatically activate the virtual environment if it exists
6
+if [ -f "$VENV_DIR/bin/activate" ]; then
7
+ source "$VENV_DIR/bin/activate"
8
+fi
Makefile
@@ -139,8 +139,7 @@ serve-ssl: certs
139
SSL=true CERT_FILE=certs/cert.pem KEY_FILE=certs/key.pem ./run-gunicorn.sh
140
141
dev:
142
- @$(VENV_DIR)/bin/uvicorn mcpgateway.main:app --reload --reload-exclude='public/'
143
-
+ @$(VENV_DIR)/bin/uvicorn mcpgateway.main:app --host 0.0.0.0 --port 8000 --reload --reload-exclude='public/'
144
run:
145
./run.sh
146
0 commit comments