我正在尝试安装/设置Fasty CMS,下面提供的文档:https://fasty.ovh/en/our/documentation
我已经安装了所有必要的需求,并遵循了所有概述的步骤。但是,我在运行Docker容器后,尝试访问http://demo.localhost:8080上Fasty CMS的“常规”视图时收到以下错误:
cms_1 | 2021/11/30 13:43:06 [error] 24#0: *1 lua entry thread aborted: runtime error: ./app.lua:74: cannot open git: No such file or directory
cms_1 | stack traceback:
cms_1 | coroutine 0:
cms_1 | [C]: in function 'require'
cms_1 | /usr/local/share/lua/5.1/lapis/init.lua:15: in function 'serve'
cms_1 | content_by_lua(nginx.conf.compiled:65):2: in main chunk, client: 12.12.0.1, server: , request: "GET / HTTP/1.1", host: "demo.localhost:8080"
我已经在ArangoDB中设置了db_demo数据库,并创建了~/.foxxrc文件和foxxy/app/js/config.js文件,如下所示:
.文件名
[server.foxxy]
url=http://localhost:8529
username=root
password=[password_here]
配置js
var Config = {
".fasty.ovh": "https://fasty.ovh/_db/",
/*".s1.fasty.ovh": "https://s1.fasty.ovh/_db/",
".s2.fasty.ovh": "https://s2.fasty.ovh/_db/"*/
};
我可以登录到Fasty CMS的“管理”门户/static/admin/,但是我看不到CMS的常规视图。
1条答案
按热度按时间klr1opcd1#
我认为它丢失了Lua编译的文件。
运行docker示例后,您能否提供
docker-compose exec cms moonc **/*.moon
的输出Fasty前端采用moonscript编写,可编译为Lua
另外,请创建一个
git
文件夹,因为它是必需的(新功能)