How does replit deploy work? Can we use it to share the websites with friends? [Django]
Hey,
I want to use ReplIt for my side-projects. That will make them live from Day 1.
But I don't understand how the deployment works?
Example: In Django, python manage.py runserver
starts a single thread server. It is not suitable for production.
In that case if I share the live page with my friends, then will it deploy using runserver
or actually use gunicorn
or something?
Voters
Create a file called .replit and enter the following:
run="bash-command-to-run-your-project"