Show HN: Flask Seed App
github.com
Show HN: Flask Seed App
1–5 of 5 posts
Re: Show HN: Flask Seed App
#2Have you tried the flask cookiecutter's?
Re: Show HN: Flask Seed App
#3Have you tried the flask cookiecutter's?
I wasn't aware of it but Cookiecutter looks interesting!
Re: Show HN: Flask Seed App
#4Looks interesting. As for the password hashing, have you tried the one built in to Werkzeug? http://flask.pocoo.org/snippets/54/
Btw., I have a similar project (with a much smaller scope) at https://github.com/codenhagen/startflaskproject.
Re: Show HN: Flask Seed App
#5Looks interesting. As for the password hashing, have you tried the one built in to Werkzeug? http://flask.pocoo.org/snippets/54/ Btw., I have a similar project (with a much smaller scope) at https://github.com/codenhagen/startflaskproject .
The Werkzeug password hasher looks interesting. It uses PBKDF2 under the hood but bcrypt seems to be considered more secure:
http://security.stackexchange.com/questions/4789/most-secure...