Files
IoT-Systems/store
hasslesstech 16b8fe9d56
Some checks failed
Component testing / Hub testing (push) Successful in 23s
Component testing / Store testing (push) Successful in 20s
Component testing / Integration smoke testing (push) Failing after 1m23s
[P] Add general smoke test and Store incremental test
2026-03-23 17:47:42 +02:00
..
2026-03-22 14:07:29 +01:00
2026-02-26 11:20:47 +02:00
2024-02-05 18:01:57 +02:00
2026-02-26 11:20:47 +02:00
2024-02-05 18:01:57 +02:00
2026-02-22 12:19:33 +01:00
2026-02-26 11:20:47 +02:00

Store

Instructions for Starting the Project

To start the Store, follow these steps:

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

Common Commands

1. Saving Requirements

To save the project dependencies to the requirements.txt file:

pip freeze > requirements.txt