Database Changes & Docker #1

Merged
oliver merged 3 commits from Docker-CI-CD into main 2025-08-27 19:43:37 +00:00
Showing only changes of commit b635565f79 - Show all commits

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`).