欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Zotonic
来自开放百科 - 灰狐
(版本间的差异)
小 (→OS X) |
小 (→OS X) |
||
(未显示1个用户的21个中间版本) | |||
第1行: | 第1行: | ||
− | Zotonic 是一个基于 [[Erlang]] 和 [[PostgreSQL]] | + | Zotonic |
+ | |||
+ | ==简介== | ||
+ | Zotonic 是一个基于 [[Erlang]] 和 [[PostgreSQL]] 构建的开源(Apache v2)[[CMS|内容管理系统]]和 Web 框架,或许它有希望成为下一个 [[Drupal]] :) | ||
+ | |||
+ | Zotonic 是个完整 Web Stack,包含: | ||
+ | * a content management system (CMS) | ||
+ | * a web framework | ||
+ | * a web server. | ||
==功能== | ==功能== | ||
− | * | + | *快速,据说比 [[PHP]] 内容管理系统快上10倍; |
− | * | + | *基于强大的 [[Django]] 模板语言; |
− | * | + | *灵活的数据模型,定义你自己的数据分类和关系; |
− | * | + | *模型-视图-控制器的完全分离; |
− | * | + | *事件驱动的Web应用; |
− | * | + | *通过内建的Comet支持,推送内容到用户浏览器; |
− | * | + | *访问控制帮助群组基于内容的协作; |
− | * | + | *模块化易于扩展和改变现有功能; |
− | * | + | *基于 [[jQuery]] 和 CSS 框架 [http://atatonic.timbenniks.nl/ Atatonic],Zotonic 0.9 版本已切换到 [[Bootstrap]]; |
− | * | + | *使用 [[Erlang]] 编程语言,数据存储于 [[PostgreSQL]]。 |
− | + | ||
− | + | ||
− | + | ||
− | == | + | ==指南== |
===OS X=== | ===OS X=== | ||
− | 从 https://github.com/zotonic/zotonic | + | [http://docs.zotonic.com/en/latest/developer-guide/getting-started.html Getting Started] |
+ | 从 git clone https://github.com/zotonic/zotonic | ||
cd zotonic | cd zotonic | ||
− | + | $ make | |
− | bin/zotonic debug | + | $ .bin/zotonic debug |
− | + | or | |
− | Erlang 17.3 | + | $ ./start-docker.sh |
+ | https://localhost:8443/ // 密码自动生成在 zotonic.config 文件里,{password, "%%GENERATED%%"} | ||
+ | Erlang 17.3 [http://docs.huihoo.com/zotonic/0.12/installation/preinstall.html SSL 有些问题],编译 17.0,使用 17.0 | ||
sudo port deactivate erlang // 停用 17.3 | sudo port deactivate erlang // 停用 17.3 | ||
sudo ln -s /usr/local/bin/erl /opt/local/bin/erl // 使用 17.0 | sudo ln -s /usr/local/bin/erl /opt/local/bin/erl // 使用 17.0 | ||
+ | 创建一个站点 | ||
+ | bin/zotonic addsite -s blog osx | ||
+ | http://osx.dev:8000/ | ||
+ | http://osx.dev:8000/admin admin/admin | ||
+ | |||
+ | ==项目== | ||
+ | *[[Cowboy]] | ||
+ | |||
+ | ==文档== | ||
+ | *[http://docs.huihoo.com/erlang/conference/euc2017/Zotonic-Erlang-for-the-Web.pdf Zotonic: Erlang for the Web] | ||
==图集== | ==图集== | ||
第34行: | 第52行: | ||
image:zotonic-admin-modules.png|模块 | image:zotonic-admin-modules.png|模块 | ||
image:zotonic-admin-translation.png|翻译 | image:zotonic-admin-translation.png|翻译 | ||
+ | image:zotonic-cloud-store.png|云存储 | ||
</gallery> | </gallery> | ||
第40行: | 第59行: | ||
*[http://code.google.com/p/zotonic/ Zotonic @ Google Code] | *[http://code.google.com/p/zotonic/ Zotonic @ Google Code] | ||
*[https://github.com/zotonic/zotonic Zotonic @ GitHub] | *[https://github.com/zotonic/zotonic Zotonic @ GitHub] | ||
− | *[http://docs.huihoo.com/zotonic/ | + | *[http://docs.huihoo.com/zotonic/ Zotonic文档] |
− | + | *[http://modules.zotonic.com/ Zotonic Module Repository] | |
− | + | ||
[[category:CMS]] | [[category:CMS]] | ||
第49行: | 第67行: | ||
[[category:event]] | [[category:event]] | ||
[[category:framework]] | [[category:framework]] | ||
+ | [[category:huihoo]] |
2021年11月28日 (日) 05:43的版本
Zotonic
目录 |
简介
Zotonic 是一个基于 Erlang 和 PostgreSQL 构建的开源(Apache v2)内容管理系统和 Web 框架,或许它有希望成为下一个 Drupal :)
Zotonic 是个完整 Web Stack,包含:
- a content management system (CMS)
- a web framework
- a web server.
功能
- 快速,据说比 PHP 内容管理系统快上10倍;
- 基于强大的 Django 模板语言;
- 灵活的数据模型,定义你自己的数据分类和关系;
- 模型-视图-控制器的完全分离;
- 事件驱动的Web应用;
- 通过内建的Comet支持,推送内容到用户浏览器;
- 访问控制帮助群组基于内容的协作;
- 模块化易于扩展和改变现有功能;
- 基于 jQuery 和 CSS 框架 Atatonic,Zotonic 0.9 版本已切换到 Bootstrap;
- 使用 Erlang 编程语言,数据存储于 PostgreSQL。
指南
OS X
从 git clone https://github.com/zotonic/zotonic cd zotonic $ make $ .bin/zotonic debug
or
$ ./start-docker.sh https://localhost:8443/ // 密码自动生成在 zotonic.config 文件里,{password, "%%GENERATED%%"}
Erlang 17.3 SSL 有些问题,编译 17.0,使用 17.0
sudo port deactivate erlang // 停用 17.3 sudo ln -s /usr/local/bin/erl /opt/local/bin/erl // 使用 17.0
创建一个站点
bin/zotonic addsite -s blog osx http://osx.dev:8000/ http://osx.dev:8000/admin admin/admin
项目
文档
图集
链接
分享您的观点