代码拉取完成,页面将自动刷新
同步操作将从 dromara/domain-admin 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# 伪目标
.PHONY: dev pro build clean upload publish
# 运行开发环境
dev:
source venv/bin/activate && gunicorn --bind '0.0.0.0:5000' --timeout 120 --reload 'domain_admin.main:app'
# 运行生产环境
pro:
source venv/bin/activate && gunicorn --bind '0.0.0.0:8000' --timeout 120 'domain_admin.main:app'
# 发布 make release
.PHONY: release
release:
python ./version-cli/auto_release.py
# 打包
build:
python setup.py sdist bdist_wheel --python-tag py2.py3
# 制作 docker 镜像
.PHONY: docker-build
docker-build:
docker build -t mouday/domain-admin:latest -f Dockerfile .
# 构建并运行 docker 镜像
.PHONY: docker-run
docker-run:
docker run -p 8000:8000 mouday/domain-admin:latest
# 构建并运行 docker 镜像
.PHONY: docker-build-run
docker-build-run:
make docker-build
make docker-run
# 清空打包产物
clean:
rm -rf temp logs .pytest_cache
rm -rf dist build *.egg-info
# 上传打包产物到 pypi
upload:
twine check dist/*
twine upload dist/*
# 发布 make publish
publish:
make clean
make build
make upload
make clean
# 运行所有测试
.PHONY: test
test:
pytest -c pytest.ini tests/api/test_index.py
# 安装开发环境依赖
# make install-require
.PHONY: install-require
install-require:
pip install -r requirements/development.txt
# 快速提交
# make fix
.PHONY: fix
fix:
git add . && git commit -m 'fix' && git push
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。