Django 内网开源?
我正在寻找一些开源的,可以自由更改和使用的Python+Django编写的内网。 只是想找到一些基础来在其上建立网站。
I'm looking for some open source, free to change and use Intranet written on Python+Django.
Just want to find some foundation to build site on top of it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在寻找预建网站,请查看 Django-CMS,内容管理系统。如果您需要的非常简单,并且您对用户有很大的信任,那么您可能可以使用 Django 附带的
admin
contrib 包。对于部署,您需要在某个内部服务器上设置 Apache Web 服务器,安装 mod_wsgi,然后以这种方式进行部署。有很多关于如何执行此操作的教程。
If you're looking for a prebuilt site, have a look at Django-CMS, a Content Management System. If what you need is very simple, and you have a large amount of trust in your Users, you can probably get away using the
admin
contrib package that comes with Django.For deployment, you're looking at setting up an Apache web server on an internal server somewhere, installing mod_wsgi, and deploying that way. There are many tutorials on how to do this.
请问您的 Intranet 需要哪些功能?正如 Josh 所建议的,Django-CMS 在大多数情况下都会表现良好。
Can you please what are features that are needed on your intranet. As Josh suggested, the Django-CMS will do good in most of the cases.