Create .env file with .env.example keys in config folder.
Install dependencies:
poetry installActivate virtual environment:
poetry shellMake database migrations:
...Create superuser for admin panel access:
...Run celery task queue:
celery -A server worker -l DEBUG -P gevent # For windows
celery -A server worker -l DEBUG # For MacOS\LinuxRun server:
uvicorn app.main:app --reloadRun test and quality suits to make sure all dependencies are satisfied and applications works correctly before making changes.
pytest .For testing API you can follow the link http://localhost:8000/graphql/