File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 2
2
:: Licensed under the MIT License.
3
3
4
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
+
5
9
set FLASK_APP = py-src/data_formulator/app.py
6
10
set FLASK_RUN_PORT = 5000
7
11
set FLASK_RUN_HOST = 0.0.0.0
Original file line number Diff line number Diff line change 1
1
# Copyright (c) Microsoft Corporation.
2
2
# Licensed under the MIT License.
3
3
4
+ # Set HTTP proxy environment variables only (Flask doesn't support SOCKS5)
5
+ # export http_proxy=http://127.0.0.1:7890
6
+ # export https_proxy=http://127.0.0.1:7890
7
+
4
8
env FLASK_APP=py-src/data_formulator/app.py FLASK_RUN_PORT=5000 FLASK_RUN_HOST=0.0.0.0 flask run
You can’t perform that action at this time.
0 commit comments