16 lines
329 B
Python
Executable File
16 lines
329 B
Python
Executable File
#!./venv/bin/python3
|
|
|
|
import click
|
|
import os
|
|
|
|
#@click.option('--config', '-c', default=config_file, help='Path to the configuration file.')
|
|
|
|
@click.command()
|
|
@click.option('--debug/-d', envvar='DEVELOPMENTS', default='false', help='enable dubug output')
|
|
def main(debug):
|
|
print(debug)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|