Skip to content

Commit

Permalink
getting deps all set up again
Browse files Browse the repository at this point in the history
  • Loading branch information
Techwraith committed Oct 7, 2012
1 parent a4c71aa commit d72e946
Show file tree
Hide file tree
Showing 19 changed files with 1,230 additions and 30 deletions.
4 changes: 2 additions & 2 deletions site/app/views/main/community.html.jade
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
.span6.info .span6.info
h3 Bug reports and feature requests h3 Bug reports and feature requests
p We love getting feedback from the community. Voice your opinion and hear about new features on the mailing list, contribute to our issue list, or go fix a bug yourself. p We love getting feedback from the community. Voice your opinion and hear about new features on the mailing list, contribute to our issue list, or go fix a bug yourself.
a(href="") Report a bug. a(href="http://github.com/mde/geddy/issues") Report a bug.
.span6.box .span6.box
- for (var i=0; i<6; i++) { - for (var i=0; i<6; i++) {
- star = stars.pop(); - star = stars.pop();
Expand All @@ -50,5 +50,5 @@
.span6.info .span6.info
h3 Example Applications h3 Example Applications
p Take a look at our example apps in the Github repo. Learn how to requre authentication, hook your app up to MongoDB, or use Jade as your templating language. p Take a look at our example apps in the Github repo. Learn how to requre authentication, hook your app up to MongoDB, or use Jade as your templating language.
a(href="") Learn by example. a(href="http://github.com/mde/geddy/tree/master/examples") Learn by example.


46 changes: 32 additions & 14 deletions site/app/views/main/faq.html.jade
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,17 +4,35 @@
h2 Frequently asked questions h2 Frequently asked questions
.row.content .row.content
.span8 .span8
h3 Which templating engines does Geddy support?
p In relation to buildings, architecture has to do with the planning, designing and constructing form, space and ambience that reflect functional, technical, social, environmental, and aesthetic considerations. It requires the creative manipulation and coordination of material, technology, light and shadow. Architecture also encompasses the pragmatic aspects of realizing buildings and structures, including scheduling, cost estimating and construction administration. As documentation produced by architects, typically drawings, plans and technical specifications, architecture defines the structure and/or behavior of a building or any other kind of system that is to be or has been constructed. :markdown
ul
li EJS ### Which templating engines does Geddy support?
li Jade + EJS
li Handlebars + Jade
li Mustache + Handlebars
h3 Which databases does Geddy's model layer have adapters for? + Mustache
p In relation to buildings, architecture has to do with the planning, designing and constructing form, space and ambience that reflect functional, technical, social, environmental, and aesthetic considerations. It requires the creative manipulation and coordination of material, technology, light and shadow. Architecture also encompasses the pragmatic aspects of realizing buildings and structures, including scheduling, cost estimating and construction administration. As documentation produced by architects, typically drawings, plans and technical specifications, architecture defines the structure and/or behavior of a building or any other kind of system that is to be or has been constructed.
h4#Router-match.subsection .match ### Which databases does Geddy's model layer have adapters for?
p In relation to buildings, architecture has to do with the planning, designing and constructing form, space and ambience that reflect functional, technical, social, environmental, and aesthetic considerations. It requires the creative manipulation and coordination of material, technology, light and shadow. Architecture also encompasses the pragmatic aspects of realizing buildings and structures, including scheduling, cost estimating and construction administration. As documentation produced by architects, typically drawings, plans and technical specifications, architecture defines the structure and/or behavior of a building or any other kind of system that is to be or has been constructed. + MongoDB
pre + Postgres
code + Riak
| router.match( '/products', 'GET' ).to( 'products.index' ) + in-memory

### Which database adapter does Geddy's model layer default to?
Geddy defaults to using the in-memory adapter for newly generated apps, but it's easy to change if you'd like.

### Do I have to use the same database adapter for all of my models?
Nope! Geddy was built with data versatility in mind. Each of your models can define it's own adapter, or it can fall back to your globally set adapter.

### How does Geddy scale across multiple processes?
Geddy uses Node's built in cluster module to create worker processes. This is configurable on an environment to environment basis.

### Does Geddy support resourceful routes?
Yep! Just use the router's built in '[resource](/documentation#router.resource)' method and it will build out a full restful API for your resource.

### Can Geddy generate an app structure for me?
Yes it can, just use the '[geddy app](/documentation#CLIapp)' command.

### Can it scaffold resources for me too?
Yep - the '[geddy scaffold](/documentation#CLIscaffold)' command is the one you're looking for.
1 change: 1 addition & 0 deletions site/node_modules/.bin/marked

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion site/node_modules/jade/lib/jade.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions site/node_modules/jade/lib/parser.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 16 additions & 1 deletion site/node_modules/jade/lib/utils.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions site/node_modules/jade/node_modules/commander/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions site/node_modules/jade/node_modules/mkdirp/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions site/node_modules/jade/package.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions site/node_modules/marked/.npmignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions site/node_modules/marked/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions site/node_modules/marked/Makefile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

125 changes: 125 additions & 0 deletions site/node_modules/marked/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d72e946

Please sign in to comment.