https://github.com/parvezmrobin/rbac
A Role-Based Access Control implementation to tryout Node, Vue and React in the same project
https://github.com/parvezmrobin/rbac
javascript nodejs react vue
Last synced: 2 months ago
JSON representation
A Role-Based Access Control implementation to tryout Node, Vue and React in the same project
- Host: GitHub
- URL: https://github.com/parvezmrobin/rbac
- Owner: parvezmrobin
- Created: 2018-12-26T21:30:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-01T17:18:47.000Z (over 6 years ago)
- Last Synced: 2025-02-07T16:43:41.696Z (4 months ago)
- Topics: javascript, nodejs, react, vue
- Language: JavaScript
- Homepage:
- Size: 1.04 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# RBAC
## Backend
Switch to a `virtualenv`.
Install the requirements from `setup.py`.
Run the following command
```bash
python -m flask run
```
It will be served in `http://localhost:5000`.## Vue Frontend
Install `Node.js`.
Move to `vue-ui` directory.
```bash
cd vue-ui
```
To serve the project, run the following command.
```npm
npm run serve
```
It will be served in `http://localhost:8080`.To make a production build, run the following command.
```npm
npm run build
```## React Frontend
Install `Node.js`.
Move to `react-ui` directory.
```bash
cd react-ui
```
Run the following command.
```npm
npm start
```
It will be served in `http://localhost:3000`.To make a production build, run the following command.
```npm
npm run build
```