add: store template

This commit is contained in:
Toolf
2024-02-05 18:01:57 +02:00
parent 1f92b43879
commit abd6bf0abe
8 changed files with 298 additions and 0 deletions

27
store/README.md Normal file
View File

@@ -0,0 +1,27 @@
# 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
```