2024-11-09 08:01:27 -08:00
|
|
|
"""
|
2024-11-09 09:05:53 -08:00
|
|
|
project_name base module.
|
2024-11-09 08:01:27 -08:00
|
|
|
|
2024-11-09 09:05:53 -08:00
|
|
|
This is the principal module of the project_name project.
|
2024-11-09 08:01:27 -08:00
|
|
|
here you put your main classes and objects.
|
|
|
|
|
|
|
|
Be creative! do whatever you want!
|
|
|
|
|
|
|
|
If you want to replace this with a Flask application run:
|
|
|
|
|
|
|
|
$ make init
|
|
|
|
|
|
|
|
and then choose `flask` as template.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# example constant variable
|
2024-11-09 09:05:53 -08:00
|
|
|
NAME = "project_name"
|