Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 1.18 KB

README.md

File metadata and controls

33 lines (28 loc) · 1.18 KB

world boss service

Python 3.10 Poetry Postgres Redis codecov

Introduction

This repository provide world boss ranking service for Nine Chronicles

Installation

How to run

$ git clone [email protected]:planetarium/world-boss-service.git
$ poetry install
$ createdb $dbname
$ poetry shell
$ flask --app world_boss/wsgi.py db upgrade --directory world_boss/migrations
$ flask --app world_boss/wsgi.py --debug run

with worker

$ celery -A world_boss.wsgi:cel worker -l debug

testing

$ pytest