Coder Social home page Coder Social logo

project_manager_django's Introduction

Django

Version

Python 3.12.1
Django 5.0.1
Celery 5.3.6

ENV

Create venv

python -m venv venv

Active venv

source ./venv/bin/activate

Install dependency

pip install celery

Update requirements.txt

pip freeze > requirements.txt

Install from requirements.txt

pip install -r requirements.txt

Run celery worker 1

celery -A project_manager_django worker --hostname=worker1 -l INFO

Run celery worker 2

celery -A project_manager_django worker --hostname=worker2 -l INFO

Run flower

celery -A project_manager_django flower -l INFO

View flower

http://localhost:5555/

Run postgres and redis

docker-compose up -d --build 

Run server

python manage.py runserver 0.0.0.0:8000

DJANGO

Start django project

django-admin startproject djangoCeleryDemo

Create new app

python manage.py startapp worker

Run shell

python manage.py shell

Trigger task from shell

from worker.tasks import invoke_lambda
invoke_lambda.delay()

Make migrate

python manage.py makemigrations home

Apply migrate

python manage.py migrate

Create super user

python manage.py createsuperuser

Collect static file

python manage.py collectstatic

project_manager_django's People

Contributors

manhpham90vn avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.