This repository has been archived on 2025-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
wot_stats_server/README.md

44 lines
529 B
Markdown
Raw Normal View History

2017-08-28 10:22:38 +03:00
# World of Tanks Statistics Server
## Requirements
- Ubuntu/Debian Linux
2017-09-03 18:46:19 +03:00
- PostgreSQL
2017-08-28 10:22:38 +03:00
- Python 2.7
- Wargaming Developers Account
## Install
2017-10-14 20:45:17 +03:00
For Postgres installation
2017-09-03 18:46:19 +03:00
https://developer.fedoraproject.org/tech/database/postgresql/about.html
2017-08-28 10:22:38 +03:00
```
pip install -r requirements.txt
```
2017-10-20 05:37:51 +03:00
## Upgrade
Upgrade database
python manage.py db upgrade head
## Run
2017-08-28 10:22:38 +03:00
2017-09-03 18:46:19 +03:00
Application
```
python run_app.py
```
Celery Worker
```
celery worker -A run_celery.celery -l info
```
Celery Beat
2017-10-20 05:37:51 +03:00
celery beat -A run_celery.celery -l debug