2024-03-10 23:16:30 +01:00
|
|
|
# SHOP API
|
|
|
|
Simple API (still WIP)
|
|
|
|
|
2024-03-12 20:11:26 +01:00
|
|
|
## Requires:
|
|
|
|
1. Redis
|
|
|
|
Simple redis installation, no further configuration needed
|
|
|
|
|
|
|
|
2. MariaDB (or MySQL)
|
|
|
|
Make sure a proper database is set up with `shop.sql`
|
|
|
|
|
|
|
|
## Running:
|
|
|
|
Gunicorn is the simplest way to run this project
|
|
|
|
```sh
|
|
|
|
gunicorn -w 4 -b HOST:PORT main:app
|
|
|
|
```
|