Simon Diesenreiter
0e9b465413
Some checks are pending
CI / tests_mac (macos-latest, 3.9) (push) Blocked by required conditions
CI / tests_win (windows-latest, 3.9) (push) Blocked by required conditions
CI / linter (ubuntu-latest, 3.9) (push) Successful in 3m30s
Rename the project from template / rename-project (push) Successful in 15s
CI / tests_linux (ubuntu-latest, 3.9) (push) Successful in 42s
18 lines
338 B
Python
18 lines
338 B
Python
"""
|
|
project_name base module.
|
|
|
|
This is the principal module of the project_name project.
|
|
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
|
|
NAME = "project_name"
|