Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ycliuhw/kman


https://github.com/ycliuhw/kman

Last synced: 8 days ago
JSON representation

Awesome Lists containing this project

README

        

# KMAN

Dependencies:
- python 3.5;
- Node v4.4.7 or above

App structure:
- `kman` -> `Django` Rest API backend;
- `ReactFrontPage` -> ReactJS + Redux single page app;

How to run `kman` Django REST API:
```sh
$ virtualenv -p $(which python3.5) venv
$ source venv/bin/activate
$ pip install -r requirements/dev.txt
$ tox
$ python manage.py runserver
```

How to run `ReactFrontPage`:
```sh
$ cd ReactFrontPage
$ npm i
$ npm start
```