Corey Burmeister

Results 9 comments of Corey Burmeister

Are you familiar with [gunicorn](http://gunicorn.org/)? You can get a "production ready" build of the app this way: ```yaml # docker-compose.prod.yml version: "3" services: app: command: gunicorn -w 2 -b :5000...

Does this have an advantage over setting `SERVER_NAME` (for example) in your environment?

I'm completely open to allowing all configuration options to be read from the environment. With that said -- I *think* I would like to [keep the entire application configuration there](https://12factor.net/config)....

> Do you intend to maintain compatibility with Python2? Nope!

Has anyone done more work on this? I'm working on a python web server that displays my media -- once a media file is clicked the server starts up a...

I've solved most of the problems in this thread here: https://github.com/cburmeister/fluid Would love some help!

I would love this! We've got a GitHub Action step that runs `pybabel extract` on every push to `master` that opens a Pull Request to update the message catalog. This...

@Dreamsorcerer would you mind sharing some of that if possible? I started writing some bash to do this but it got unwieldily fairly quickly 😅

@Dreamsorcerer thank you!