46 Star 460 Fork 332

极客时间 / Django

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
start.local.bat 639 Bytes
一键复制 编辑 原始数据 按行查看 历史
david euler 提交于 2020-12-01 03:25 . 添加 Dockerfile
# django-admin compilemessages
## if local config file does not exist, clond one:
test -f settings/local.py || echo "=== warning: local.py does not exist, will initialize the file, please update the configs ==="
test -f settings/local.py || cp settings/production.py settings/local.py
test -f settings/local.py && sed -i '' 's/DEBUG = False/DEBUG = True/g' settings/local.py 2> /dev/null
# synchronous web server for development:
# --settings=settings.local
python3 manage.py runserver 0.0.0.0:8000 $server_params
# for async web server:
# export DJANGO_SETTINGS_MODULE=settings.local
# uvicorn recruitment.asgi:application --workers 3
Python
1
https://gitee.com/geektime-geekbang/django.git
git@gitee.com:geektime-geekbang/django.git
geektime-geekbang
django
Django
master

搜索帮助