coincube
coincube copied to clipboard
"no python application found" on Sign Up
I managed to build it up, it is running on Unbuntu 20.04 This is what i get on docker logs when i am trying to create an account.
flask | --- no python application found, check your startup logs for errors --- flask | [pid: 12|app: -1|req: -1/3] 172.18.0.4 () {48 vars in 833 bytes} [Mon Mar 8 10:25:08 2021] POST /api/auth/register => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
Any suggestions ?
If you check the logs of the flask container, you will see that the email_validator package is missing.
Add email_validator at the end of the back/back-end/requirements.txt file
Also, pin the versions for the following packages:
- flask-user==0.6.19
- apispec==3.2.0
- flask-jwt-extended==3.25.1
- webargs==5.4.0