Skip to content

Commit

Permalink
removed filters from models guide
Browse files Browse the repository at this point in the history
  • Loading branch information
tsilva committed Dec 1, 2014
1 parent 5c8cca3 commit f359ab4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 13 deletions.
15 changes: 15 additions & 0 deletions doc/advanced.md
Expand Up @@ -2,3 +2,18 @@

This page presents advanced information in a not so structured manner. It is used as both a reference
for external and internal developers, and therefore rewards flexibility over structure.

## Filters

* `equals` -
* `not_equals` -
* `like` -
* `llike` -
* `rlike` -
* `greater` -
* `greater_equal` -
* `lesser` -
* `lesser_equal` -
* `is_null` -
* `is_not_null` -
* `contains` -
7 changes: 7 additions & 0 deletions doc/heroku.md
@@ -0,0 +1,7 @@
# Heroku

Deploying to Heroku is very easy. You pretty much only have to follow the
[Getting Started with Python on Heroku](https://devcenter.heroku.com/articles/getting-started-with-python#introduction)
guide with some minor changes.

First make sure you followed the following steps in the Heroku guide:
13 changes: 0 additions & 13 deletions doc/models.md
Expand Up @@ -194,19 +194,6 @@ Or cats whose text is not `garfield` nor `felix`:
cats = Cat.find(name = {"$nin" : ("garfield", "felix")})
```

* `equals` -
* `not_equals` -
* `like` -
* `llike` -
* `rlike` -
* `greater` -
* `greater_equal` -
* `lesser` -
* `lesser_equal` -
* `is_null` -
* `is_not_null` -
* `contains` -

## Referencing the App

In order to invoke methods that belong to the App object, one can access it through
Expand Down
1 change: 1 addition & 0 deletions readme.md
Expand Up @@ -59,6 +59,7 @@ For the purposes of rapid web development, Appier goes well with [Netius](http:/
* [Events](doc/events.md) - how to send information across the app
* [Logging](doc/logging.md) - how to log your app's activity
* [Email](doc/email.md) - how to send emails
* [Heroku](doc/email.md) - how to deploy to [Heroku](http://www.heroku.com)
* [Advanced Topics](doc/advanced.md) - miscellaneous advanced topics

## License
Expand Down

0 comments on commit f359ab4

Please sign in to comment.