Skip to content

Commit 51eeeb8

Browse files
committed
Change port of kernel manager to avoid macOS conflict.
1 parent 186fcd4 commit 51eeeb8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

frontend/src/config.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const Config = {
22
WEB_ADDRESS: "http://localhost:8080",
3-
API_ADDRESS: "http://localhost:5000"
3+
API_ADDRESS: "http://localhost:5010"
44
}
55

66
export default Config;

gpt_code_ui/kernel_program/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import gpt_code_ui.kernel_program.config as config
2121
import gpt_code_ui.kernel_program.utils as utils
2222

23-
APP_PORT = 5000
23+
APP_PORT = 5010
2424

2525
# Get global logger
2626
logger = config.get_logger()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='gpt_code_ui',
5-
version='0.42.6',
5+
version='0.42.7',
66
packages=find_packages(),
77
package_data={'gpt_code_ui.webapp': ['static/*', 'static/assets/*']},
88
install_requires=[

0 commit comments

Comments
 (0)