DEV Community

Discussion on: How I Structure My Flask Apps

Collapse
 
dbanty profile image
Dylan Anthony

Thanks for the post! I have a few questions if you don’t mind:

  1. Any reason you choose to create and import the app directly instead of using the factory method?

  2. How do you usually run Flask apps in production? (e.g. gunicorn, waitress, etc.)

  3. How do you manage configs for different environments?

  4. How do you distribute the services to the server?

Collapse
 
itachiuchiha profile image
Itachi Uchiha

Hi. Thanks for your questions :)

1-) Actually, this is a habit for me. I never used a factory method in my Flask apps. Also, I don't know what are the benefits of factory methods.

2-) I use gunicorn.

3-) I usually use dotenv. But I used class-based configs for this post :)

4-) I don't understand this question :/

Thanks :)

Collapse
 
costular profile image
Diego Francisco Concepción

The fourth question means:
How do you deploy your monolith/microservices to your server?

Thread Thread
 
itachiuchiha profile image
Itachi Uchiha

Hmm. I'm using the EB CLI.

Firstly, I install it.

pip install awsebcli — upgrade

I also set secret keys for the elastic bean in the ~/.aws/config file.

[profile eb-cli]
aws_access_key_id = MY_KEY
aws_secret_access_key = MY_SECRET

and then I use these commands.

eb init -p python-3.6 my-flask-app — region WHICH_REGION_DO_YOU_USE

eb init

eb create flask-env

eb open

Did you mean this? :P I hope :/)

Thread Thread
 
dbanty profile image
Dylan Anthony

Yes, thank you. I’ve never used elastic beanstalk before, I’ll add it to the list of services to explore. Thanks for all your answers!

Thread Thread
 
itachiuchiha profile image
Itachi Uchiha • Edited

Actually, I only used it twice times. I'll use gcloud or azure next times. (This is my plan). Thanks :)

Collapse
 
adekoder profile image
adekoder

Benefit of using factory methods

Testing. You can have instances of the application with different settings to test every case.

Multiple instances. Imagine you want to run different versions of the same application. Of course you could have multiple instances with different configs set up in your webserver, but if you use factories, you can have multiple instances of the same application running in the same application process which can be handy.

Thread Thread
 
itachiuchiha profile image
Itachi Uchiha

Hmm, can you show an example about factory methods for the newbies :)

Thread Thread
 
adekoder profile image
adekoder

Sure in a bit

Thread Thread
 
itachiuchiha profile image
Itachi Uchiha

Thanks, I'll be waiting for your contribution. Thanks.

Collapse
 
jayso_o1 profile image
Sowah Joseph Anyetei • Edited

I think the question four was referring to whether it's a microservice or monolithic app.