dternyak / React-Redux-Flask

Boilerplate application for a Python/Flask JWT Backend and a Javascript/React/Redux Front-End with Material UI.
MIT License
1.51k stars 321 forks source link

Use admin-on-rest #12

Open fzaninotto opened 7 years ago

fzaninotto commented 7 years ago

Hi, and thanks for this project.

Part of what you're trying to achieve (a React admin based on a REST API) now exists as a standalone repository, in a slightly more advanced version. It's called admin-on-rest.

I think this repo would benefit a lot from reusing admin-on-rest components.

dternyak commented 7 years ago

Thanks for bringing my attention to this.

I haven't yet thought about integrating an admin functionality to this boilerplate, but if I do, I'll look into admin-on-rest.

For now, this project is meant to serve as a starting point for building any SPA based modern web application.

davidthornton commented 7 years ago

Also, admin-on-rest is not based on Flask like React-Redux-Flask is.

fzaninotto commented 7 years ago

admin-on-rest is a client-side component that can adapt to any server API, including any API you can build with Flask.

davidthornton commented 7 years ago

Ahh true, I did not notice that the intention was to be backend-agnostic (and got pretty caught up with the fact that "someone had already rolled a flask backend" because this was pretty close to what we wanted)

I recognize the importance of a backend agnostic admin panel in many cases.