chr15m / PodSixNet

Lightweight multiplayer network library for python games
https://pypi.python.org/pypi/PodSixNet
GNU Lesser General Public License v3.0
167 stars 32 forks source link

Deployment recommendations? #38

Open ianbbqzy opened 4 years ago

ianbbqzy commented 4 years ago

Does anybody have any recommendations for deployment? I have a simple game coded up and I want to be able to play test with another friend living in another state. I don't need to be able to scale the game for multiple sessions or more than 10 connections. Are there any simple and cheap ways to host a game server? AWS, Heroku, or configuring my router? Thanks!

chr15m commented 4 years ago

@ianbbqzy I would recommend a cheap VPS + Piku for this. Here's what I would do in your position:

Your procfile could be as simple as:

gameserver: ./my-game-server-script.py $PORT

Then in the ENV file you set the PORT=99999 variable.