teamhide / fastapi-boilerplate

FastAPI boilerplate for real world production
987 stars 156 forks source link

[Question]: What is difference between local and dev environments #9

Closed MarTarsoo closed 1 year ago

MarTarsoo commented 1 year ago

I know development and production environments purposes and I've seen using name of local instead of dev for local development. but haven't seen using both of them. Could you guide me what is their difference?

teamhide commented 1 year ago

dev is a configuration value for the docker environment, and local is a configuration value for the local environment. However, please note that it may vary depending on the settings you are using.

teamhide commented 1 year ago

I don't want you to get too tied up in the code structure in this project. The purpose of this project is to modify and use it according to the user's own needs :)

MarTarsoo commented 1 year ago

dev is a configuration value for the docker environment, and local is a configuration value for the local environment.

Thanks for clarifying this, It makes sense now.

I don't want you to get too tied up in the code structure in this project.

Right but I can't help myself, it's really amazing 💯 and I'm sorry I want to dig into your code more 😔

teamhide commented 1 year ago

It may be difficult for those who are new to fastapi. I'll add a part about the guide when I have time.