Django crate自定义可重用应用程序,其中对manage.py进行了一些更改

问题描述

我正在遵循this文档来创建可恢复的Django应用程序,但是主要实现是在 manage.py 上,例如:

from google.cloud import firestore as f
from google.cloud.firestore_v1.field_path import FieldPath

firestore = f.Client()
colRef = firestore.collection(u'docs')
filter = [firestore.document(u'docs/doc1'),firestore.collection(u'docs/doc3')]
query = colRef.where(FieldPath.document_id(),u'in',filter)

有任何方法可以创建可重复使用的程序包,只需将其添加到INSTALLED_APPS上,然后修改manage.py或任何其他方法来检查测试是否正在运行,以在运行前更改某些测试配置。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...