Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
React Redux Flask | 1,411 | 2 years ago | 11 | mit | JavaScript | |||||
Boilerplate application for a Python/Flask JWT Backend and a Javascript/React/Redux Front-End with Material UI. | ||||||||||
Apollobank | 183 | a year ago | mit | TypeScript | ||||||
A full stack GraphQL banking application using React, Node & TypeScript. | ||||||||||
Twitter Spring Reactjs | 111 | 2 days ago | 5 | TypeScript | ||||||
:bird: Twitter Clone with Microservice Architecture using Java 17, Spring Boot, Spring Cloud, PostgreSQL, S3 bucket, JWT, TypeScript, React.js, Redux-Saga, Material-UI | ||||||||||
React Router V4 Redux Auth | 80 | 6 years ago | 1 | JavaScript | ||||||
An implementation of JWT using the latest version of react-router (v4), redux, redux-form, and material-ui | ||||||||||
Woocrud | 48 | 10 months ago | 1 | JavaScript | ||||||
Woocommerce CRUD With ReactJs | ||||||||||
Sabil | 34 | 3 months ago | JavaScript | |||||||
A full-functional (Work in progress now) ecommerce web application that is developed by using MERN (MongoDB, Express.js, React.js, and Node.js) | ||||||||||
Sales Order System 2 | 21 | 2 years ago | unlicense | Java | ||||||
React + Java 8 + Spring Boot + MySQL + MongoDB + Redis Demo Web App | ||||||||||
Frontend | 19 | a year ago | 6 | TypeScript | ||||||
마음을 잇는 현명한 소비 '잇다'🤝 | ||||||||||
Me Mo Ri | 9 | a year ago | JavaScript | |||||||
It is web-app in which you can add your memories by adding tags, title ,time of upload(automatic) and description about it, you can also like others post and search posts by name of memories and tags. you can later edit your post also and delete too according to your wish. It is fully responsive web-app with google authorization, expiry-session and pagination features. | ||||||||||
Employeemanagementsystemreactmuidotnetjwtauth | 8 | 8 months ago | JavaScript | |||||||
[Assignment given by a company for evaluation] Basic Employee Management System With React, Material UI & .Net Core, JWT Used For Authentication & Authorization. Use the username and password "demo". |
Boilerplate application for a Flask JWT Backend and a React/Redux Front-End with Material UI.
$ export DATABASE_URL="postgresql://username:[email protected]/mydatabase"
or
$ export DATABASE_URL="mysql+mysqlconnector://username:[email protected]/mydatabase"
or
$ export DATABASE_URL="sqlite:///your.db"
(More about connection strings in this flask config guide.)
$ python manage.py create_db
$ python manage.py db upgrade
$ python manage.py db migrate
To update database after creating new migrations, use:
$ python manage.py db upgrade
$ cd static
$ npm install
$ python manage.py runserver
$ python test.py --cov-report=term --cov-report=html --cov=application/ tests/
$ cd static
$ npm start
$ npm run build:production
If you are approaching this demo as primarily a frontend dev with limited or no python experience, you may need to install a few things that a seasoned python dev would already have installed.
Most Macs already have python 2.7 installed but you may not have pip install. You can check to see if you have them installed:
$ python --version
$ pip --version
If pip is not installed, you can follow this simple article to get both homebrew and python
After you install python, you can optionally also install python 3
$ brew install python3
Now you can check again to see if both python and pip are installed. Once pip is installed, you can download the required flask modules:
$ sudo pip install flask flask_script flask_migrate flask_bcrypt
Now, you can decide on which database you wish to use.
If you decide on MySQL, install the free community edition of MySQL and MySQL Workbench
$ sudo pip install mysql-connector-python-rf
$ export DATABASE_URL="mysql+mysqlconnector://username:[email protected]/mydatabase"
$ python manage.py create_db
Note: you do not need to run "python manage.py db upgrade" or "python manage.py db migrate" if its your first go at it
$ python manage.py runserver
If all goes well, you should see * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
followed by a few more lines in the terminal.
$ cd static
$ npm install
$ npm start