Message Queue MUD Dockerization Update

I made progress on that MUD I’ve been working on. Try it out (yea, naming things is hard): 1 2 3 git clone -b v0.1.0_share https://gitlab.com/modle13/queue-mud.git cd queue-mud docker-compose up Over the weekend, I got it working nearly back to the state it was before dockerizing. There’s a bit less logic (the creatures decision point just returns a string), and the Angular frontend is still disabled. I had had a publisher and consumer working back in early January, but now it has the whole chain: command > validate > attack if command is attack and there’s a target > response queue....

February 7, 2019

Containerizing the Flask, Angular, RabbitMQ MUD  [draft]

Here it is running on the bare metal linux mint install. We’re going to run it in minikube. First, containerizing the angulars Got the angular app up and running with this Dockerfile https://mherman.org/blog/dockerizing-an-angular-app/ With the frontend running in a container, and the flask backend and rabbitMQ running on bare metal, everything is working as expected. Then, containerizing the flasks This was pretty slick, but didn’t work with my code:...

December 15, 2018