GithubHelp home page GithubHelp logo

django_sample's Introduction

初始化开发环境

# 安装virtualenv 
pip3 install virtualenv
# 创建虚拟环境
virtualenv venv
# 安装依赖
pip install -r requiriments.txt

# 启动相关组件依赖(redis)
docker-compose up -d

初始化数据库

# 生成migrations脚本
python manage.py makemigrations

# 生成数据库
python manage.py migrate

cd django_admin python manage.py runserver 0.0.0.0:8090

生成数据库

python manage.py migrate

创建一个管理员

python manage.py createsuperuser

生成数据库脚本

python manage.py makemigrations python manage.py migrate

celery相关

# broker默认使用redis


# 运行调度器
celery -A django_sample beat -l INFO --scheduler django_celery_beat.schedulers:DatabaseScheduler

# 运行worker,运行worker之前需要将redis服务启动
celery -A django_sample worker -l INFO

django_sample's People

Watchers

 avatar  avatar  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.