Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jod35/Flask-React-Recipes
This is code for a series of videos where I build a full-stack web application with ReactJS and the Flask framework.
https://github.com/jod35/Flask-React-Recipes
flask flask-restx-api json react sqlite
Last synced: about 2 months ago
JSON representation
This is code for a series of videos where I build a full-stack web application with ReactJS and the Flask framework.
- Host: GitHub
- URL: https://github.com/jod35/Flask-React-Recipes
- Owner: jod35
- Archived: true
- Created: 2021-07-26T22:04:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-16T14:29:54.000Z (almost 2 years ago)
- Last Synced: 2024-08-09T02:15:12.107Z (5 months ago)
- Topics: flask, flask-restx-api, json, react, sqlite
- Language: JavaScript
- Homepage: https://www.youtube.com/playlist?list=PLEt8Tae2spYkfEYQnKxQ4vrOULAnMI1iF
- Size: 1.05 MB
- Stars: 48
- Watchers: 1
- Forks: 24
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - jod35/Flask-React-Recipes - This is code for a series of videos where I build a full-stack web application with ReactJS and the Flask framework. (JavaScript)
README
# Flask + ReactJS Recipes
This is a series of videos in which I talk about full stack web application development using Python Flask and the ReactJS library.## About the project
The project is a simple recipe app that allows simple CRUD actions against a Flask REST API.## What to cover
### Backend Development
- Creating REST APIs with Flask with Flask-RestX
- Using Flask-SQLAlchemy ORM
- Carrying Out Database Migrations with Flask-Migrate
- JWT Authentication with Flask-JWT-Extended
- Testing Flask API with Unittest### Frontend Development
- Creating React Components
- React Hooks
- React Hooks
- JWT Authentication on the frontend
- Making API Calls with Fetch API## Video Playlist
[Build a Full stack web app with Flask and ReactJS](https://www.youtube.com/playlist?list=PLEt8Tae2spYkfEYQnKxQ4vrOULAnMI1iF)## Live Demo On Render.com
[View The project here](https://flask-react-recipes.onrender.com/signup)# To run this project
1. Clone the Git repository
2. In the root folder, create a virtual environment using your favorite method.
3. Install project dependencies with
``
pip install -r requirements.txt
``
4. Run project with
``
python run.py
``
5. Run test
``
pytest
``