added simple readme for docker

This commit is contained in:
2025-08-27 21:35:13 +02:00
parent 1291970b51
commit b635565f79

41
readme.md Normal file
View File

@@ -0,0 +1,41 @@
# eve\_structure
A small Flask server for managing orders.
## Requirements
* Python
* Docker
## Setup
Install the Python dependencies:
```bash
pip install -r requirements.txt
```
## Running for Development
```bash
python main.py
```
## Running with Docker
Build the Docker image:
```bash
docker build -t eve_structure .
```
Or simply use Docker Compose:
```bash
docker-compose up
```
## Notes
* `instance` directory is used to store the database (`orders.json`).