Explicitly tell you django-environs library that you are passing int not string. You can achieve that by casting the value in this format, so update your code on settings.py to look like this;
Remove the dollar sign ($) on your .env as well
PORT = env.int("PORT")