mirror of
https://github.com/journeyman-cc/smeagol.git
synced 2026-04-12 18:05:06 +00:00
Initial commit, not yet complete.
This commit is contained in:
parent
53885f696d
commit
d437f07fc2
33 changed files with 884 additions and 3 deletions
20
resources/public/md/docs.md
Normal file
20
resources/public/md/docs.md
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
|
||||
### Managing Your Middleware
|
||||
|
||||
Request middleware functions are located under the `smeagol.middleware` namespace.
|
||||
A request logging helper called `log-request` has already been defined for you there.
|
||||
|
||||
This namespace also defines two vectors for organizing the middleware called `development-middleware` and `production-middleware`.
|
||||
Any middleware that you only wish to run in development mode, such as `log-request`, should be added to the first vector.
|
||||
|
||||
### Here are some links to get started
|
||||
|
||||
1. [HTML templating](http://www.luminusweb.net/docs/html_templating.md)
|
||||
2. [Accessing the database](http://www.luminusweb.net/docs/database.md)
|
||||
3. [Serving static resources](http://www.luminusweb.net/docs/static_resources.md)
|
||||
4. [Setting response types](http://www.luminusweb.net/docs/responses.md)
|
||||
5. [Defining routes](http://www.luminusweb.net/docs/routes.md)
|
||||
6. [Adding middleware](http://www.luminusweb.net/docs/middleware.md)
|
||||
7. [Sessions and cookies](http://www.luminusweb.net/docs/sessions_cookies.md)
|
||||
8. [Security](http://www.luminusweb.net/docs/security.md)
|
||||
9. [Deploying the application](http://www.luminusweb.net/docs/deployment.md)
|
||||
Loading…
Add table
Add a link
Reference in a new issue