Skip to content

Commit

Permalink
added cache manager, configuration update using cached configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
achillesrasquinha committed Aug 24, 2017
1 parent 17cda19 commit 88fbf33
Show file tree
Hide file tree
Showing 20 changed files with 5,336 additions and 5,079 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ Check out a live demo of the application [here](https://cancerdiscover.herokuapp
* [SASS](http://sass-lang.com)

### License
This software has been released under the [GNU General Public License v3](LICENSE).
This software has been released under the [GNU General Public License v3](LICENSE).
6 changes: 6 additions & 0 deletions candis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# module - candis
from candis.config import Config, get_config, CONFIG
from candis.manager import Cache
from candis.ios.cdata import CData
from candis.ios.pipeline import Pipeline
from candis.ios import cdata, pipeline
# candis.cli
from candis.cli import main

__version__ = CONFIG.VERSION
cache = Cache()
cache.create()

config = cache.get_config()
CONFIG.update(config)
Loading

0 comments on commit 88fbf33

Please sign in to comment.