Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ycliuhw/kman
https://github.com/ycliuhw/kman
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ycliuhw/kman
- Owner: ycliuhw
- License: apache-2.0
- Created: 2016-11-21T08:58:17.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-23T10:45:33.000Z (about 8 years ago)
- Last Synced: 2024-12-19T20:39:58.908Z (22 days ago)
- Language: Python
- Size: 102 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KMAN
Dependencies:
- python 3.5;
- Node v4.4.7 or aboveApp 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
```