https://github.com/yingjieqiao/kue-web
Web Component of Kue
https://github.com/yingjieqiao/kue-web
firebase flask material-ui reactjs
Last synced: 3 months ago
JSON representation
Web Component of Kue
- Host: GitHub
- URL: https://github.com/yingjieqiao/kue-web
- Owner: YingjieQiao
- License: gpl-3.0
- Created: 2020-10-27T13:14:02.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-11-12T16:37:04.000Z (over 4 years ago)
- Last Synced: 2025-01-17T01:39:19.278Z (over 1 year ago)
- Topics: firebase, flask, material-ui, reactjs
- Language: TypeScript
- Homepage:
- Size: 1.49 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kue-Web
Web Component of [Kue](https://github.com/YingjieQiao/kue).
Built with React for frontend and Flask for backend, hosted on an AWS EC2 server instance.

## Build Setup
``` bash
# install frontend dependencies
cd frontend
npm install
# serve with hot reload at localhost:3000
npm run start
# build for production with minification
npm run build
# install backend dependencies
cd ../backend
pip install -r requirements.txt
# serve backend at localhost:5000
FLASK_APP=run.py flask run
```