27 lines
653 B
Markdown
27 lines
653 B
Markdown
|
|
# Store
|
||
|
|
## Instructions for Starting the Project
|
||
|
|
To start the Store, follow these steps:
|
||
|
|
1. Clone the repository to your local machine:
|
||
|
|
```bash
|
||
|
|
git clone https://github.com/Toolf/store.git
|
||
|
|
cd store
|
||
|
|
```
|
||
|
|
2. Create and activate a virtual environment (optional but recommended):
|
||
|
|
```bash
|
||
|
|
python -m venv venv
|
||
|
|
source venv/bin/activate # On Windows, use: venv\Scripts\activate
|
||
|
|
```
|
||
|
|
3. Install the project dependencies:
|
||
|
|
```bash
|
||
|
|
pip install -r requirements.txt
|
||
|
|
```
|
||
|
|
4. Run the system:
|
||
|
|
```bash
|
||
|
|
python ./main.py
|
||
|
|
```
|
||
|
|
## Common Commands
|
||
|
|
### 1. Saving Requirements
|
||
|
|
To save the project dependencies to the requirements.txt file:
|
||
|
|
```bash
|
||
|
|
pip freeze > requirements.txt
|
||
|
|
```
|