updates meta

This commit is contained in:
2025-02-20 20:02:47 +01:00
parent 5994d8ae7b
commit adc002b38d
3 changed files with 56 additions and 7 deletions

View File

@@ -28,6 +28,21 @@
- Flask-WTF
- Pandas
- Requests
- Redis
- Celery
Redis currently has to run locally, but this will change in the future. To change this, see file tasks.py:
```python
# tasks.py
def get_redis():
return redis.StrictRedis(
host='localhost',
port=6379,
db=0,
decode_responses=True
)
```
## Installation