Metadata-Version: 2.0
Name: brink
Version: 0.2.0
Summary: A simple real time web framework based on aiohttp and RethinkDB.
Home-page: https://github.com/lohmander/brink
Author: CH Lohmander
Author-email: hannes@lohmander.me
License: BSD-3
Keywords: sample setuptools development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: aiohttp
Requires-Dist: aiohttp-autoreload
Requires-Dist: rethinkdb
Provides-Extra: dev
Requires-Dist: check-manifest; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'

# Brink Framework

[![Build Status](https://travis-ci.org/lohmander/brink.svg?branch=feature%2Fmodel-rewrite)](https://travis-ci.org/lohmander/brink)

## Installation

    $ pip install brink

## Getting started

Getting started is very easy assuming you have Docker installed.

Start RethinkDB like so

    $ docker run rethinkdb -p 8080:8080 -p 28015:28015 -d --name rethink

And then get started with your project like so

    $ brink start-project myproject
    $ cd myproject
    $ brink sync-db
    $ brink run

## Documentation

Full documentation is (will be) available at <https://lohmander.github.io/brink/>.



