0

我有一个 Apostrophe-CMS 的实例,目前我正在尝试将其部署到生产环境中。运行sudo npm start正常,应用程序启动。但是,当我尝试让 pm2 守护程序运行它时,我收到了符号链接错误:

Error: EEXIST: file already exists, symlink '/var/sites/hackday-2016-microsite/node_modules/apostrophe/lib/modules/apostrophe-assets/public' -> '/var/sites/hackday-2016-microsite/public/modules/apostrophe-assets' hackday2016-28 at Error (native) hackday2016-28 at Object.fs.symlinkSync (fs.js:1048:18) hackday2016-28 at Object.self.linkAssetFolderOnUnix (/var/sites/hackday-2016-microsite/node_modules/apostrophe/lib/modules/apostrophe-assets/index.js:447:10) hackday2016-28 at Object.self.linkAssetFolder (/var/sites/hackday-2016-microsite/node_modules/apostrophe/lib/modules/apostrophe-assets/index.js:424:14) hackday2016-28 at /var/sites/hackday-2016-microsite/node_modules/apostrophe/lib/modules/apostrophe-assets/index.js:402:14 hackday2016-28 at /var/sites/hackday-2016-microsite/node_modules/lodash/index.js:3073:15 hackday2016-28 at baseForOwn (/var/sites/hackday-2016-microsite/node_modules/lodash/index.js:2046:14) hackday2016-28 at /var/sites/hackday-2016-microsite/node_modules/lodash/index.js:3043:18 hackday2016-28 at Function.<anonymous> (/var/sites/hackday-2016-microsite/node_modules/lodash/index.js:3346:13) hackday2016-28 at self.symlinkModules (/var/sites/hackday-2016-microsite/node_modules/apostrophe/lib/modules/apostrophe-assets/index.js:398:9) hackday2016-28 at /var/sites/hackday-2016-microsite/node_modules/async/lib/async.js:718:13 hackday2016-28 at iterate (/var/sites/hackday-2016-microsite/node_modules/async/lib/async.js:262:13) hackday2016-28 at async.forEachOfSeries.async.eachOfSeries (/var/sites/hackday-2016-microsite/node_modules/async/lib/async.js:281:9) hackday2016-28 at _parallel (/var/sites/hackday-2016-microsite/node_modules/async/lib/async.js:717:9) hackday2016-28 at Object.async.series (/var/sites/hackday-2016-microsite/node_modules/async/lib/async.js:739:9) hackday2016-28 at Object.self.afterInit (/var/sites/hackday-2016-microsite/node_modules/apostrophe/lib/modules/apostrophe-assets/index.js:349:20)

4

1 回答 1

0

我对 ApostropheCMS 也很陌生,并且已经玩了一段时间了。看起来您创建了一个符号链接以将撇号资产文件夹链接到公用文件夹?我不明白有必要这样做。AposCMS 自动拾取

node_modules/撇号/lib/modules/撇号资产/公共和

/var/sites/hackday-2016-microsite/public/modules/apostrophe-assets 文件夹。

您所要做的就是确保在 /var/sites/hackday-2016-microsite/lib/modules/apostrophe-pages/index.js 下声明要为项目添加的资产

这是我文件下的代码

    module.exports = {
        park: [{
            slug: '/search',
            type: 'apostrophe-search',
            label: 'Search',
            published: true
        }],
        types: [{
                name: 'default',
                label: 'Default'
            },
            {
                name: 'home',
                label: 'Home'
            },
            {
                name: 'apostrophe-blog-page',
                label: 'Blog'
            }
        ],

    //construct is one of the nunjucks functions that gets called when app.js starts
    construct: function(self, options) {

        //push assets to for use in front end - e.g. lib/modules/apostrophe-pages/public/js/site.js

        self.pushAsset('script', 'site', { scene: 'always' });
        self.pushAsset('script', 'jquery.easing', { scene: 'always' });
        self.pushAsset('script', 'jquery.scrollTo', { scene: 'always' });
        self.pushAsset('script', 'bootstrap', { scene: 'always' });
        self.pushAsset('script', 'jquery.easing', { scene: 'always' });
        self.pushAsset('script', 'jquery.matchHeight', { scene: 'always' });
        self.pushAsset('script', 'jquery.easy-autocomplete', { scene: 'always' });
    }
};

要添加 css 文件,您可以在

/var/sites/hackday-2016-microsite/public/modules/apostrophe-assets/public/css/site.less 我在文件中的代码是:

@import 'utilities/_index.less';
@import 'typography/_index.less';
@import 'layout/_index.less';
@import 'templates/_index.less';
@import 'components/_index.less';
@import 'global/_index.less';
@import 'components/easy-autocomplete.less';
@import 'components/easy-autocomplete.themes.less';
// this is the place were we are adding the css syles so that they get automatically compiled
// and are minified and send out as one file
@import 'custom/bootstrap.less';
@import 'custom/font-awesome.less';
@import 'custom/jquery.autocomplete.less';
@import 'custom/simple-sidebar.less';
@import 'custom/style.less';

.apos-slideshow-item
{
  h4
  {
    display: none;
  }
}
于 2016-11-17T01:20:53.477 回答