diff --git a/Dockerfile b/Dockerfile index 2a68b83..e6bd0d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,4 +3,4 @@ WORKDIR /usr/9CAT_rankings COPY requirements.txt . COPY /src . RUN pip3 install -r requirements.txt -CMD [ "python", "dash_graphs.py"] \ No newline at end of file +CMD [ "python", "main.py"] \ No newline at end of file diff --git a/README.md b/README.md index c9da4f1..b21279c 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ From the main directory (`9CAT_RANKINGS`): 1. `pip install -r requirements.txt` -2. `python3 src/dash_graphs.py` +2. `python3 src/main.py` and navigate to `http://localhost:8000` in the browser. diff --git a/src/dash_graphs.py b/src/main.py similarity index 100% rename from src/dash_graphs.py rename to src/main.py