flask-react-spa icon indicating copy to clipboard operation
flask-react-spa copied to clipboard

A production-ready boilerplate built with Python 3, Flask and ES6 React/Redux

Results 8 flask-react-spa issues
Sort by recently updated
recently updated
newest added

Can anyone help with Flask-SocketIO integration in this project or if someone has prior done it and can share the setup guide

Has anyone had success integrating this with one Swagger/OpenAPI? I keep getting: | File "/flask/venv/lib/python3.9/site-packages/flask_restful_swagger/swagger.py", line 329, in extract_operations backend_1 | for method in [m.lower() for m in resource.methods]: backend_1...

here is my mail config ``` MAIL_ADMINS = ('[email protected]',) # FIXME MAIL_SERVER = os.environ.get('FLASK_MAIL_HOST', 'smtp.gmail.com') MAIL_PORT = int(os.environ.get('FLASK_MAIL_PORT', 587)) # tls #MAIL_PORT = int(os.environ.get('FLASK_MAIL_PORT', 465)) # ssl MAIL_USE_TLS = get_boolean_env('FLASK_MAIL_USE_TLS',...

Actually throwing all kind of errors any help would be greatly appreciated the project looks awesome! Errors Attaching to flask-react-spa_redis_1, flask-react-spa_celery_beat_1, flask-react-spa_sphinx_docs_1, flask-react-spa_mailhog_1, flask-react-spa_postgres_1, flask-react-spa_celery_worker_1, flask-react-spa_backend_1, flask-react-spa_frontend_1 redis_1 | find:...

Hi Brian, I had some `500 internal server errors` when deploying, especially with loading articles. Turns out, the uwsgi processes were not connecting with redis. So I swapped in geerlingguys...

Do you have a tip, how to disable csrf for some views? I try to implement this: ` from flask_wtf import CSRFProtect csrf = CSRFProtect() @csrf.exempt @api.route(git, '//git-receive-pack', methods=('POST',)) def...

When I am trying generate signup confirmation link it points to http://backend:5000/auth/confirm/ instead of http://localhost:5000/auth/confirm/ which works. I tried look code but I did not find place where to change...

I've spent a few hours with this starter project and think its amazing. It could really help devs like myself become better at the fullstack. I'm frontend strong and backend...