To start the Store, follow these steps:
- Clone the repository to your local machine:
git clone https://github.com/Toolf/store.git
cd store- Create and activate a virtual environment (optional but recommended):
python -m venv venv
source venv/bin/activate # On Windows, use: venv\Scripts\activate- Install the project dependencies:
pip install -r requirements.txt- Run the system:
python ./main.pyTo save the project dependencies to the requirements.txt file:
pip freeze > requirements.txt