init
This commit is contained in:
11
{{cookiecutter.project_slug}}/app/__main__.py
Normal file
11
{{cookiecutter.project_slug}}/app/__main__.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from app.core import config
|
||||
|
||||
|
||||
def main():
|
||||
"""Main entry point for the application."""
|
||||
print(f"Welcome to {config.APP_NAME}!")
|
||||
print(f"Debug mode: {config.DEBUG}")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user