So After Long Time Using the Website replit.com
I Had Learned How to Use it and Configure it as per My Requirement.
For Those Who Don't Know Replit
It's an IDE Similar to VSCode But It's Online In A Website at https://replit.com/ which can be used for running any programming projects and most of the programming languages already installed there.
Problem
Unable to Run Projects Under localhost or
127.0.0.1
domain.
Details
replit.com
is an website running on server and our project also run there so localhost or 127.0.0.1 obviously never run
First Solution
Change address from,
localhost:8000
or127.0.0.1
to0.0.0.0:8000
Example Given Below Also Watch the Second Linked Solution
# from this
python main.py runserver
# to this
python main.py runserver 0.0.0.0:8000
# or this
python main.py --host 0.0.0.0 --port 8000
Second Solution Linked to First Solution
Mostly You Will Get Issues Because Most Python Web Frameworks Have an Global Value
ALLOWED_HOSTS
and it contains the list of domain names allowed by the given server
# change allowed hosts from
ALLOWED_HOSTS = []
# To This Hosts
ALLOWED_HOSTS = ['*']
Conclusion
If Issue Still Occurred Directly related to Virtual Environments.
I Will Add That to Next Post and Add the Link To That Post Below Or in Pinned Comment
Replit Was Unable to Build the Virtual Environment for Python Project
Shrikant Dhayje ・ Mar 29 '22
Give a reaction if any one solutions helped you in any way.
Bye 👋.
Top comments (0)