├── .gitignore ├── Makefile ├── README.md ├── mypythonservice.env ├── mypythonservice.py ├── mypythonservice.service └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .idea 3 | venv -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfilli/mypythonservice/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfilli/mypythonservice/HEAD/README.md -------------------------------------------------------------------------------- /mypythonservice.env: -------------------------------------------------------------------------------- 1 | VERBOSE=1 -------------------------------------------------------------------------------- /mypythonservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfilli/mypythonservice/HEAD/mypythonservice.py -------------------------------------------------------------------------------- /mypythonservice.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfilli/mypythonservice/HEAD/mypythonservice.service -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | watchdog==2.0.2 2 | --------------------------------------------------------------------------------