From 1c3baf5e3a38ccf4e9a8abdf3a367cbcc92222c6 Mon Sep 17 00:00:00 2001 From: Christan Grant Date: Mon, 6 Nov 2023 15:46:56 -0500 Subject: [PATCH] Updated files to run on new mac --- run.py | 2 +- setup.py | 2 +- wiggum_app/config.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/run.py b/run.py index 0b3e73ff..4985a62d 100644 --- a/run.py +++ b/run.py @@ -2,4 +2,4 @@ if __name__ == "__main__": # tell app to run on port 5000, then the app will run on http://127.0.0.1:5000// - app.run(debug=True, host='0.0.0.0', port=5000) + app.run(debug=True, host='0.0.0.0', port=5001) diff --git a/setup.py b/setup.py index 99dd0c17..665eeffc 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ packages=['wiggum', 'wiggum_app','wiggum.trend_components'], zip_safe=False, include_package_data = True, - install_requires=['matplotlib', 'Numpy', 'Scipy', 'seaborn', 'pandas','flask'], + install_requires=['matplotlib', 'Numpy', 'Scipy', 'seaborn', 'pandas', 'flask', 'scikit-learn'], entry_points = { 'console_scripts': ['wiggum-app=wiggum_app.command_line:main'], }) diff --git a/wiggum_app/config.py b/wiggum_app/config.py index 2cfe3e2b..c026cdfa 100644 --- a/wiggum_app/config.py +++ b/wiggum_app/config.py @@ -1,2 +1,2 @@ DEBUG=True -SERVER_NAME="127.0.0.1:5000" +SERVER_NAME="localhost:5001"