I’m not asking for a basic hello world app, I’m asking how long does it take to build all things Django provides me with a single line in terminal “django startproject prjectname”
This includes:
Authentication system
Cookie to keep users logged in
-Password Hashing
Admin panel
The same security level Django provides by default
csrftoken to protect users data
In django it would take about 30 minutes cuz everything is handled automatically for me, but how about Golang?
gobuffalo is built on state of the art Go packages - you’ll find it nice and fast.
Django is great for quick development, but it isn’t fast - it needs lots of resources to serve a busy website. Go is much much more efficient. That said you can forget to index an SQL table in any language