parts.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{%= title %}</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <meta name="author" content="{%= author_name %}" />
  7. </head>
  8. <body>
  9. <p>The sample app contains a few additional parts beyond Amber itself:</p>
  10. <ul style="width: 40ex">
  11. <li>The common infrastructure: testing.js, devel.js, *.json,
  12. .gitignore, big part of Gruntfile.js,
  13. <code>devDependencies</code> in package.json
  14. </li>
  15. <li>Common code ({%= name %}-Tests package).</li>
  16. <li>These introductory files: parts.html and uninstall.html</li>
  17. <li>Polyfilling: some dependencies in package.json
  18. and their use in Gruntfile.js and index.html.
  19. </li>
  20. <li>The webapp-specific code ({%= name %} package).</li>
  21. <li>The webapp-specific dependencies in package.json
  22. (modules silk, domite, contrib-web and contrib-jquery).
  23. </li>
  24. <li>The webapp entry point index.html.</li>
  25. <li>The webapp-specific infrastructure: deploy.js
  26. and parts of Gruntfile.js that use webapp-specific pieces.
  27. </li>
  28. <li>The lambda-specific code ({%= name %}-Backend package).</li>
  29. <li>The lambda handler file lambda/index.js.</li>
  30. <li>The lambda-specific infrastructure: lambda.js
  31. and parts of Gruntfile.js that use lambda-specific pieces.
  32. </li>
  33. </ul>
  34. </body>
  35. </html>