Commit 07610a42f3d1bc83ec5dcc5395b3f79514c110bb

Authored by Ryan Glover
1 parent 510619f55a
Exists in master

Update README to reflect correct file structure, packages,

and current Meteor version. Change name of Not Found template to
use a hyphen instead of camel case.
1   -# The Meteor Chef - Base
  1 +# The Meteor Chef - Base (@0.9.2.2)
2 2 A starting point for Meteor apps.
3 3  
4 4 ### **This project is currently under heavy development and not recommended for use.**
... ... @@ -9,13 +9,13 @@ Base is the lazy person's starter kit for Meteor. It includes some commonly used
9 9 - Accounts (Base) - `meteor add accounts-base`
10 10 - Accounts (Password) - `meteor add accounts-password`
11 11 - Audit Argument Checks - `meteor add audit-argument-checks`
12   -- Bootstrap 3 - `mrt add bootstrap-3`
  12 +- Bootstrap 3 - `meteor add pinglamb:bootstrap3`
13 13 - Check - `meteor add check`
14 14 - CoffeeScript - `meteor add coffeescript`
15   -- Handlebars Server - `mrt add handlebars-server`
16   -- Iron Router - `mrt add iron-router`
  15 +- Handlebars Server - `meteor add cmather:handlebars-server`
  16 +- Iron Router - `meteor add iron:router`
17 17 - jQuery - `meteor add jquery`
18   -- Sass - `mrt add sass`
  18 +- Sass - `meteor add particle4dev:sass`
19 19 - Underscore - `meteor add underscore`
20 20  
21 21 ### File Structure
... ... @@ -23,6 +23,7 @@ Base comes with a pre-defined file structure common to all projects along with s
23 23  
24 24 ```
25 25 /root
  26 +---/.meteor
26 27 ---/client
27 28 ------/controllers
28 29 ---------/public
... ... @@ -40,19 +41,22 @@ Base comes with a pre-defined file structure common to all projects along with s
40 41 ---------routes-authenticated.coffee
41 42 ---------routes-public.coffee
42 43 ------/stylesheets
43   ----------/globals
44   -------------_extends.scss
45   ----------/modules
46   ----------/vendor
47   ----------/views
48   -------------/public
49   ----------------_login.scss
50   ----------app.scss
  44 +---------/sass
  45 +------------/globals
  46 +---------------_extends.scss
  47 +------------/modules
  48 +------------/vendor
  49 +------------/views
  50 +---------------/authenticated
  51 +---------------/public
  52 +------------------_login.scss
  53 +---------application.scss
51 54 -------/views
52 55 ---------/authenticated
53 56 ------------index.html
54 57 ---------/public
55 58 ------------login.html
  59 +------------not-found.html
56 60 ------------recover-password.html
57 61 ------------reset-password.html
58 62 ------------signup.html
... ... @@ -66,14 +70,14 @@ Base comes with a pre-defined file structure common to all projects along with s
66 70 ------/admin
67 71 ---------accounts.coffee
68 72 ---------startup.coffee
69   -------/publications
70   -------/email
71   ----------/send
72   ----------/templates
73 73 ------/data
74 74 ---------/insert
75 75 ---------/update
76 76 ---------/remove
  77 +------/email
  78 +---------/send
  79 +---------/templates
  80 +------/publications
77 81 ```
78 82  
79 83 ### Language & Formatting
... ...
client/views/public/not-found.html
... ... @@ -0,0 +1,3 @@
  1 +<template name="notFound">
  2 + <h1>404 &mdash; Not Found.</h1>
  3 +</template>
... ...
client/views/public/notFound.html
... ... @@ -1,3 +0,0 @@
1   -<template name="notFound">
2   - <h1>404 &mdash; Not Found.</h1>
3   -</template>