使用Mean.Io启动一个新项目

时间:2014-08-10 13:26:47

标签: mean.io

我创建了一个新的Mean项目。现在我要创建自己的项目。我意识到我应该创建一个新包。我已执行命令mean package myOwnPackage,并且已将新包添加到文件夹packages。在那个里面还有其他包。我不明白如何通过grunt运行项目,只显示我的应用程序而不是内置的包文章

2 个答案:

答案 0 :(得分:0)

在包文件夹中,删除/packages/articles,当grunt时,您会在导航栏中看到您的包名称。 systemaccessusers无法删除,否则会导致错误。

答案 1 :(得分:0)

  1. 意味着初始化 - 看起来就像你那样。
  2. 删除'articles'包,这是一个例子
  3. 自定义您的应用:
  4. 这些模板会将您的Angular应用加载到浏览器中。

    - packages/system/server/views/index.html - this extends default.html.
    - packages/system/server/views/layouts/default.html - this is the bottom-most template in your app.
    - packages/system/server/views/includes/foot.html,head.html - these are used by default.html to build a homepage.  Note that head.html is head tag not menu.
    

    现在浏览器已加载您的应用。它是一个角度应用程序,因此angular会开始更改已加载页面的DOM。

    - packages/system/public/views/index.html - This is what angular puts on the \ route
    - packages/system/public/views/header.html - This is what angular puts in the menu
    

    这会回答你的问题吗?

    如果你想制作一个黑色网站,找出你想要黑色的地方。