Skip to content

Commit

Permalink
fix #49 add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
llazzaro committed Jul 11, 2015
1 parent 17b56a2 commit 9f8c813
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,29 @@ add to `TEMPLATE_CONTEXT_PROCESSORS`:

Add staticfinder to STATICFILES_FINDERS:

```'djangobower.finders.BowerFinder',
```
'djangobower.finders.BowerFinder',
```

Specify path to components root (you need to use absolute path):
```BOWER_COMPONENTS_ROOT = '/PROJECT_ROOT/components/'```
```
BOWER_COMPONENTS_ROOT = '/PROJECT_ROOT/components/'
```

Add the following required Bower dependencies for scheduler:

```BOWER_INSTALLED_APPS = (
```
BOWER_INSTALLED_APPS = (
'jquery',
'bootstrap'
)```
)
```

Last step, install bower dependencies with:

```./manage.py bower install```
```
./manage.py bower install
```


Features
Expand Down Expand Up @@ -155,3 +162,12 @@ Default:
This setting allows for custom base classes to be used on all models. Useful for adding fields, managers, or other elements.

Defaults to django.db.models.Model


### SCHEDULER_PREVNEXT_LIMIT_SECONDS

This settings allows to set the upper and lower limit in calendars navigation.
Value is in seconds.

Default (two years):
62208000

0 comments on commit 9f8c813

Please sign in to comment.