Skip to content
This repository has been archived by the owner on Jul 15, 2019. It is now read-only.

Latest commit

 

History

History
54 lines (37 loc) · 862 Bytes

README.md

File metadata and controls

54 lines (37 loc) · 862 Bytes

react-flask-graphql-example

A personal one-shot example app using React, Flask, and GraphQL.

Setup

% npm install
% pip install -r flask/requirements.in

Usage

Launch the GraphQL API server:

% cd flask
% python app.py

Launch the development web server which serves the static client-side app:

% npm start

Frameworks/Libraries

Client-side (JavaScript)

  • React
  • Redux
  • react-router and react-router-redux
  • Apollo client (GraphQL integration)
  • Semantic-UI-React (CSS framework)

The application code was generated by create-react-app.

See package.json for more information.

Server-side (Python)

  • Flask
  • Flask-Cors
  • Flask-GraphQL

Related Work