Tag: startup
-
Properly Run Python Django under a local network
First, you need to find your local IP address with this command in cmd: ipconfig/all Open settings.py and add your IP address to the ALLOWED_HOSTS list: ALLOWED_HOSTS = [‘192.168.xxx.xxx’] Finally run command in the terminal: python manage.py runserver 192.168.xxx.xxx:8000 Voila, now you can visit your Django app by accessing this address(192.168.xxx.xxx:8000) from any device in…
-
Journey Report 24 August 2021: WordPress edit, post edit, internal links, startups
I’ve been working on the website itself and my side project(startup). Nothing special, the startup is in the early stage, so far we have done DNS testing with bind9 technology, which is not suitable for further but no we know it’s working. The client-server part was partly done with Python and Server’s listener was build…