Project for COMP 380 - A website that shows the user the COVID precautions and current busyness of a grocery store / market that they search for, as well as a list of recommended alternatives.
Something to note when testing -
-
Right click, select 'inspect'
-
Go to 'sources' tab
-
Quickly skim the script.js and ensure it matches your current file.
-
If it does not, clear your browsing data in your browser settings.
-
Re-inistialize your isolated Python environment
- Create an isolated Python environment in a directory external to your project and activate it:
python3 -m venv env
source env/bin/activate
- Navigate to your project directory and install dependencies:
cd YOUR_PROJECT_PATH
pip install -r requirements.txt
- Run the application:
python3 main.py
- In your web browser, enter the following address:
http://127.0.0.1:5555
-
Locate your installation of PowerShell.
-
Right-click on the shortcut to PowerShell and start it as an administrator.
-
Create an isolated Python environment in a directory external to your project and activate it:
python -m venv env
env\Scripts\activate
- Navigate to your project directory and install dependencies:
cd YOUR_PROJECT
pip install -r requirements.txt
- Run the application:
python3 main.py
- In your web browser, enter the following address:
http://127.0.0.1:5555