by GoodSoft | Jun 21, 2022 | Web
There are a few different approaches to packaging Play applications into a Docker Image. You can create a Dockerfile file by hand, customize preexisting one or just by using some tool to generate it. Since Play comes with a great packaging application –...
by GoodSoft | Jun 9, 2022 | Web
Even when our application passes all unit tests, it doesn’t mean that it will work as a whole system. One way of making sure that it works as a whole, is testing it from the user’s perspective. The easiest way of performing this type of test is manually...
by GoodSoft | Jun 7, 2022 | Web
Writing tests isn’t the most interesting part of developing a new feature, yet it’s an important one. Well written tests will help you make sure that your newly added feature won’t break any other functionality. However while testing DAOs and...
by GoodSoft | Jun 2, 2022 | Web
Database optimization is a rather hard topic. Every database is different and may need different methods of tuning. These are some of the most common places to check for improvement. Creating proper indexes One of the easiest ways of speeding up your database queries...
by GoodSoft | Jun 2, 2022 | Web
Play Silhouette and Social logins Most users can’t be bothered to fill in a form with their email, fullname, same login as on every other website, and (the hardest part) two identical, complicated and strong passwords. Then every time they come back to...