How do I set up a temporary online server for my app?

0
6
Asked By TechyTurtle87 On

I'm currently developing an app and I want to incorporate an online component. My idea is to use the host's computer as a temporary local server that can allow around 6 to 10 users to connect via an IP address. I need this connection to be secure, but I'm unsure how to go about setting it up. I'm coding the app in Python, but I may consider rewriting it in C# later on. Any suggestions or guidance would be appreciated!

1 Answer

Answered By DevDynamo42 On

You could try using Flask to create a simple Python server. It's pretty straightforward to set up on the user's machine and can manage requests. For a secure connection, look into implementing SSL with Flask. Just keep in mind that you might need to set up port forwarding for others to connect externally.

CuriousCoder29 -

Thanks for the tip! Is Flask part of my Python code, or do I have to run it as a separate program?

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.