We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e4d0b5c + f5c9541 commit 415fd6bCopy full SHA for 415fd6b
2 files changed
local_server.bat
@@ -2,6 +2,10 @@
2
:: Licensed under the MIT License.
3
4
@echo off
5
+:: Set HTTP proxy environment variables only (Flask doesn't support SOCKS5)
6
+:: set http_proxy=http://127.0.0.1:7890
7
+:: set https_proxy=http://127.0.0.1:7890
8
+
9
set FLASK_APP=py-src/data_formulator/app.py
10
set FLASK_RUN_PORT=5000
11
set FLASK_RUN_HOST=0.0.0.0
local_server.sh
@@ -1,4 +1,8 @@
1
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
+# Set HTTP proxy environment variables only (Flask doesn't support SOCKS5)
+# export http_proxy=http://127.0.0.1:7890
+# export https_proxy=http://127.0.0.1:7890
env FLASK_APP=py-src/data_formulator/app.py FLASK_RUN_PORT=5000 FLASK_RUN_HOST=0.0.0.0 flask run
0 commit comments