Skip to content

erkarl/browl-api

Repository files navigation

Browl Browl-API Build Status

Backend for Browl. Live demo.

Install

Clone, set up virtualenv

Clone this repo, set up and activate a virtualenv:

git clone git@github.com:erkarl/browl-api.git
cd browl-api 
virtualenv env
source env/bin/activate

Setup Database

Create a new PostgreSQL user with the username browl and password browl. Grant it access to browl database.

Optionally, if you'd like to use SQLite3 as your DB backend - just change DATABASES setting in ../browl-api/browl/settings.py:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': 'db.sqlite3',
    }
}

Setup Dependencies

make install
make initdb

Run the server

make server

Launch http://localhost:7000 in your browser.

Tests

make test 

About

Backend for Browl.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages